-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "oootb",
"version": "2.0.0",
"description": "Used for creating a out-of-the-box template without additional configuration.",
"keywords": [
"create-app",
"app",
"template",
"init",
"out-of-the-box"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ouduidui/oootb.git"
},
"author": "Dewey Ou <oushihao@gmail.com> (https://github.com/ouduidui/)",
"type": "module",
"files": [
"./dist/index.cjs"
],
"bin": {
"oootb": "./dist/index.cjs"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"scripts": {
"dev": "zx ./bin/dev.mjs & node ./dist/index.cjs",
"build": "zx ./bin/build.mjs",
"release": "npm run build && npx bumpp --commit --push --tag",
"ncu": "zx ./bin/ncu.mjs",
"ni": "zx ./bin/ni.mjs"
},
"bugs": {
"url": "https://github.com/ouduidui/oootb/issues"
},
"homepage": "https://github.com/ouduidui/oootb#readme",
"devDependencies": {
"@ouduidui/eslint-config-ts": "^0.1.1",
"@types/degit": "^2.8.3",
"@types/prompts": "^2.4.2",
"commander": "^9.2.0",
"degit": "^2.8.4",
"esbuild": "^0.14.30",
"eslint": "^8.13.0",
"pnpm": "^6.32.4",
"prompts": "^2.4.2",
"typescript": "^4.9.5",
"zx": "^6.0.7"
}
}