-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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
{
"name": "create-xodel",
"version": "4.15.0",
"description": "An easy way to start a Vue project",
"type": "module",
"bin": {
"create-xodel": "outfile.cjs"
},
"files": [
"locales",
"outfile.cjs",
"template"
],
"engines": {
"node": ">=v16.20.0"
},
"scripts": {
"prerc": "npm --no-git-tag-version version minor",
"rc": "npm run push",
"commit": "git add . && git commit -am ",
"c": "npm run commit",
"push": "npm run commit",
"_push": "git push --recurse-submodules=on-demand origin",
"_pull": "git pull --recurse-submodules origin",
"postpush": "uname -s | grep -q Darwin && npm run _push || while true; do timeout 5 npm run _push && break; done",
"pull": "uname -s | grep -q Darwin && npm run _pull || while true; do timeout 5 npm run _pull && break; done",
"prepare": "husky",
"format": "prettier --write .",
"build": "zx ./scripts/build.mjs",
"snapshot": "zx ./scripts/snapshot.mjs",
"pretest": "run-s build snapshot",
"test": "zx ./scripts/test.mjs",
"test:unit": "vitest",
"prepublishOnly": "zx ./scripts/prepublish.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiangnanscu/create-xodel.git"
},
"keywords": [],
"author": "Haoqun Jiang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiangnanscu/create-xodel/issues"
},
"homepage": "https://github.com/xiangnanscu/create-xodel#readme",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/eslint": "^8.56.2",
"@types/node": "^20.11.19",
"@types/prompts": "^2.4.9",
"@vue/create-eslint-config": "^0.3.2",
"@vue/tsconfig": "^0.5.1",
"ejs": "^3.1.9",
"esbuild": "^0.18.20",
"esbuild-plugin-license": "^1.2.2",
"husky": "^9.0.11",
"kolorist": "^1.8.0",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"vitest": "^1.3.0",
"zx": "^7.2.3"
},
"lint-staged": {
"*.{js,ts,vue,json}": [
"prettier --write"
]
}
}