-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.38 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.38 KB
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
{
"name": "@norah1to/setup-cli",
"version": "1.1.0",
"description": "Flexibility to build \"your\" application templates",
"type": "module",
"bin": {
"setup-cli": "dist/index.mjs"
},
"types": "dist/types/index.d.ts",
"files": [
"dist",
"types",
"scripts"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "node ./scripts/init.js",
"prepare": "ts-patch install -s && git init && pnpm husky install",
"dev": "pnpm build -w",
"build": "rollup -c rollup.config.js",
"release": "standard-version",
"test": "vitest run --coverage.enabled --coverage.provider=c8 --coverage.reporter=lcov"
},
"keywords": [
"cli",
"setup",
"setup-cli",
"norah1to"
],
"author": "norah1to <norah1to@qq.com>",
"repository": "https://github.com/NoraH1to/setup-cli",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@rollup/plugin-eslint": "^9.0.2",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/prettier": "^2.7.2",
"@types/verror": "^1.10.6",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-c8": "^0.28.5",
"commitizen": "^4.2.6",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"rollup": "^3.10.0",
"rollup-plugin-delete": "^2.0.0",
"standard-version": "^9.5.0",
"ts-patch": "^2.1.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"typescript-transform-paths": "^3.4.6",
"utility-types": "^3.10.0",
"vitest": "^0.28.4"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^10.0.0",
"execa": "^6.1.0",
"fs-extra": "^11.1.0",
"globby": "^13.1.3",
"inquirer": "^8.2.5",
"inquirer-autocomplete-prompt": "^3.0.0",
"inquirer-checkbox-plus-prompt": "^1.4.2",
"minimatch": "^7.4.2",
"nanoid": "^4.0.1",
"normalize-path": "^3.0.0",
"ora": "^6.1.2",
"pkg-dir": "^7.0.0",
"prettier": "^2.8.8",
"verror": "^1.10.1",
"yaml": "^2.2.1"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 7.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}