-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dev-control-center",
"version": "0.2.9",
"description": "",
"type": "module",
"main": "lib/dcc-cli.js",
"bin": {
"dcc": "./lib/dcc-cli.js"
},
"scripts": {
"lint": "eslint --max-warnings 0 'src/**/*.{ts,js,json,d.ts}'",
"build": "tsc",
"test": "#"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged && yarn pretty-quick --staged",
"pre-push": "yarn build"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/auth-token": "^6.0.0",
"@octokit/graphql": "^9.0.3",
"@octokit/rest": "^22.0.1",
"execa": "^5.1.1",
"open": "^10.2.0",
"simple-git": "^3.30.0",
"source-map-support": "^0.5.13",
"timeago.js": "^4.0.2",
"winston": "^3.2.1",
"yargs": "^17.0.0",
"zod": "^3.10.3"
},
"devDependencies": {
"@types/node": "^24.0.15",
"@types/source-map-support": "^0.5.3",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^4.2.1",
"lint-staged": "^9.5.0",
"prettier": "^1.18.0",
"pretty-quick": "^4.2.2",
"ts-node": "^8.4.1",
"tslint": "^6.1.3",
"typescript": "^5.8.3"
}
}