generated from mizok/service-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "cli-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"bin": {
"xxx": "dist/main.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commitlint": "commitlint --edit $HUSKY_GIT_PARAMS",
"build": "ts-node esbuild.ts",
"pack": "npm pack --pack-destination='./package'",
"postinstall": "git update-index --assume-unchanged postinstall.ts && ts-node postinstall.ts",
"tag-beta": "npm version prepatch --preid=beta",
"tag": "npm version",
"publish-beta": "npm run tag-beta && npm run build && npm publish --tag beta",
"publish": "npm run tag && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mizok/service-template.git"
},
"keywords": [
"vite",
"service",
"template"
],
"author": "Mizok",
"license": "MIT",
"bugs": {
"url": "https://github.com/mizok/service-template/issues"
},
"homepage": "https://github.com/mizok/service-template#readme",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/types": "^17.8.1",
"@types/copyfiles": "^2.4.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.8.10",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.8",
"husky": "^8.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"chalk": "^5.3.0"
},
"dependencies": {
"@inquirer/input": "^1.2.14",
"@inquirer/rawlist": "^1.2.14",
"@inquirer/select": "^1.3.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"i18next": "^23.7.7"
}
}