-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@uchen/github-sampler",
"version": "1.0.0",
"description": "Downloads files from GitHub",
"main": "dist/main.js",
"author": "Eugene Ostroukhov <eostroukhov@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint --ext .ts,.js ./src",
"start": "node dist/src/main.js",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"chalk": "^4.0.0",
"dotenv": "16.4.5",
"winston": "3.14.2",
"yarg": "1.0.8",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.15",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^29.7.0",
"eslint": "^9.0.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"typescript": "5.5.4"
}
}