-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "create-unibest",
"type": "module",
"version": "1.12.0",
"packageManager": "pnpm@8.15.1",
"description": "An easy way to start a unibest project",
"author": "菲鸽 <1020103647@qq.com>",
"license": "MIT",
"homepage": "https://github.com/codercup/create-unibest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/codercup/create-unibest.git"
},
"bugs": "https://github.com/codercup/create-unibest/issues",
"keywords": [
"uni",
"uni-app",
"unibest",
"create-unibest",
"cli",
"vue",
"miniapp"
],
"sideEffects": false,
"bin": {
"create-unibest": "outfile.cjs"
},
"files": [
"outfile.cjs"
],
"scripts": {
"build": "node scripts/build.js",
"dev": "node outfile.cjs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "nr build",
"release": "bumpp",
"typecheck": "tsc --noEmit",
"up": "cd ./template && pnpx taze@latest major -w -r && cd ./base && pnpx @dcloudio/uvm@latest --manager pnpm"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@types/ejs": "^3.1.5",
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.11",
"@types/prompts": "^2.4.9",
"@uni-helper/eslint-config": "^0.0.5",
"bumpp": "^9.3.0",
"ejs": "^3.1.9",
"esbuild": "^0.18.20",
"eslint": "^8.56.0",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.1",
"minimist": "^1.2.8",
"pnpm": "^8.15.1",
"prompts": "^2.4.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}