-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.43 KB
/
package.json
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
{
"name": "jike-cli",
"version": "0.10.1",
"packageManager": "[email protected]",
"description": "Jike CLI",
"type": "module",
"license": "AGPL-3.0",
"homepage": "https://github.com/open-jike/jike-cli#readme",
"bugs": {
"url": "https://github.com/open-jike/jike-cli#issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-jike/jike-cli.git"
},
"files": [
"bin",
"dist"
],
"main": "./dist/index.js",
"bin": "./bin/jike-cli.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./bin/jike-cli.js",
"dev": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"release": "bumpp && npm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@poppinss/cliui": "^6.4.1",
"@vue-reactivity/fs": "^0.1.1",
"commander": "^11.1.0",
"enquirer": "^2.4.1",
"eventemitter3": "^5.0.1",
"jike-sdk": "^0.27.0",
"open": "^10.1.0",
"terminal-image": "^3.0.0"
},
"devDependencies": {
"@sxzz/eslint-config": "^4.1.1",
"@sxzz/prettier-config": "^2.0.1",
"@types/node": "^20.12.6",
"bumpp": "^9.4.0",
"date-fns": "^3.6.0",
"eslint": "^9.0.0",
"fast-glob": "^3.3.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}