forked from uetchy/create-create-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
72
73
74
75
{
"name": "create-create-app",
"description": "Create your own `create-something` app.",
"version": "7.3.0",
"author": "Yasuaki Uechi <[email protected]>",
"scripts": {
"build": "npm run tsup -- --minify --dts",
"clean": "shx rm -rf lib 'templates/*/{yarn.lock,package-lock.json,node_modules}'",
"dev": "npm run tsup -- --watch",
"prepublishOnly": "npm run clean && npm run build",
"release": "release-it",
"test": "run-p build typecheck && vitest --run",
"tsup": "tsup src/index.ts src/cli.ts -d lib",
"typecheck": "tsc --noEmit"
},
"types": "lib/index.d.ts",
"main": "lib/index.js",
"bin": {
"create-create-app": "lib/cli.js"
},
"files": [
"lib",
"templates"
],
"dependencies": {
"@types/yargs-interactive": "^2.1.3",
"chalk": "^4",
"cross-spawn": "^7.0.3",
"epicfail": "^3.0.0",
"execa": "^5",
"gitconfig": "^2.0.8",
"globby": "^11",
"handlebars": "^4.7.7",
"is-utf8": "^0.2.1",
"license.js": "^3.1.2",
"slash": "^3",
"uuid": "^8.3.2",
"yargs-interactive": "^3.0.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/node": "^18.0.0",
"@types/uuid": "^8.3.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mdmod": "^2.0.0",
"mdmod-plugin-toc": "^0.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"release-it": "^15.1.1",
"shx": "^0.3.4",
"ts-node": "^10.8.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vitest": "^0.16.0"
},
"lint-staged": {
"*.md": "mdmod"
},
"homepage": "https://github.com/uetchy/create-create-app",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/create-create-app.git"
},
"bugs": {
"url": "https://github.com/uetchy/create-create-app/issues"
},
"license": "MIT",
"keywords": [
"create-app",
"create-create-app"
]
}