forked from cloving-ai/cloving-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.88 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.88 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cloving",
"version": "0.2.1",
"packageManager": "yarn@1.22.22",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cp package.json dist/package.json",
"start": "node dist/index.js",
"watch": "tsc -w",
"check": "bash -c 'npx tsc --noEmit --skipLibCheck'",
"test": "bash -c jest",
"prepare": "husky"
},
"bin": "./dist/index.js",
"files": [
"dist",
"!**/test/**"
],
"keywords": [],
"author": "Lucas Carlson",
"license": "MIT",
"description": "",
"lint-staged": {
"*.ts": [
"yarn run check"
]
},
"lint-prepush": {
"base": "main",
"tasks": {
"*.ts": [
"yarn run check",
"yarn run test"
]
}
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"axios": "^1.7.3",
"cli-highlight": "^2.1.11",
"commander": "^12.1.0",
"copy-paste": "^1.5.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-raine": "^0.5.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"express": "^4.19.2",
"ignore": "^5.3.2",
"ini": "^4.1.3",
"isbinaryfile": "^5.0.2",
"nock": "^13.5.4",
"vite": "^5.4.0",
"vite-node": "^2.0.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/copy-paste": "^1.1.33",
"@types/express": "^4.17.21",
"@types/ini": "^4.1.1",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.2.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-prepush": "^2.2.2",
"lint-staged": "^15.2.9",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"resolutions": {
"eslint": "8.57.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-import": "2.29.1"
}
}