-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@pureadmin/cli",
"version": "2.2.0",
"packageManager": "pnpm@8.6.10",
"description": "快速构建pure-admin相关项目的命令行工具",
"main": "bin/www.mjs",
"engines": {
"node": ">=18.18.0",
"pnpm": ">=8.6.10"
},
"scripts": {
"dev": "esno src/index.ts init thin vue-pure-admin",
"devc": "esno src/index.ts create",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint:eslint": "eslint --cache --max-warnings 0 \"src/**/*.ts\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,ts,md}\"",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js",
"lint:pretty": "pretty-quick --staged",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"test": "echo \"Error: no test specified\" && exit 1",
"pub": "pub",
"prepare": "husky install"
},
"keywords": [
"pure-admin",
"@pureadmin/cli",
"pure-admin-cli",
"vue-pure-admin",
"pure-admin-thin",
"tauri-pure-admin",
"electron-pure-admin"
],
"bin": {
"pure": "bin/www.mjs"
},
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/pure-admin/pure-admin-cli/tree/main/#readme",
"bugs": {
"url": "https://github.com/pure-admin/pure-admin-cli/issues"
},
"license": "MIT",
"author": {
"name": "Ten-K"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pure-admin/pure-admin-cli.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"axios": "^1.6.2",
"boxen": "5.1.2",
"cac": "^6.7.14",
"figlet": "^1.7.0",
"fs-extra": "^10.1.0",
"gradient-string": "^2.0.2",
"inquirer": "^8.2.6",
"log-symbols": "^4.1.0",
"ora": "^5.4.1",
"picocolors": "^1.0.0",
"progress-estimator": "^0.3.1",
"semver": "^7.5.4",
"simple-git": "^3.20.0",
"trash": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@pureadmin/release": "^1.1.0",
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.5",
"@types/inquirer": "^8.2.10",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"esno": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}