-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 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
{
"name": "@aiou/bin-template",
"version": "4.0.0",
"type": "module",
"packageManager": "pnpm@7.33.0",
"description": "templates for cli project",
"keywords": [
"aiou",
"cli",
"neo",
"template"
],
"license": "MIT",
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/neo-hack/bin-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/neo-hack/bin-template.git"
},
"bugs": {
"url": "https://github.com/neo-hack/bin-template/issues",
"email": "jiangweixian1994@gmail.com"
},
"author": {
"name": "JW",
"email": "jiangweixian1994@gmail.com",
"url": "https://twitter.com/jiangweixian"
},
"bin": {
"bin-template": "bin/index.mjs"
},
"scripts": {
"build": "rimraf lib && rollup -c --silent --environment BUILD:production",
"dev": "rollup -c -w",
"vitest": "vitest",
"test": "pnpm run build && pnpm run vitest",
"ci:publish": "pnpm run build && pnpm changeset publish",
"ci:version": "pnpm changeset version",
"ci:snapshot": "pnpm changeset version --snapshot beta",
"ci:prerelease": "pnpm run build && pnpm changeset publish --tag beta",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"lint-staged": {
"**/**/*.{js,ts,tsx,vue,json,yml,yaml}": ["eslint --fix"]
},
"devDependencies": {
"@aiou/eslint-config": "^0.11.0",
"@changesets/cli": "^2.26.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/inquirer": "^8.1.3",
"@types/node": "17.0.8",
"@types/rimraf": "^3.0.2",
"cac": "6.7.12",
"consola": "^2.15.3",
"cz-emoji": "^1.3.1",
"esbuild": "^0.18.6",
"eslint": "^8.32.0",
"execa": "^6.0.0",
"husky": "^8.0.3",
"inquirer": "8.2.0",
"lint-staged": "^13.1.0",
"ora": "6.0.1",
"picocolors": "1.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^3.25.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-node-externals": "^6.1.1",
"rollup-plugin-size": "^0.3.1",
"source-map-support": "^0.5.21",
"typescript": "^4.6.4",
"vitest": "^0.22.1"
}
}