-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "@robertchaw/create-myapp",
"version": "0.1.0",
"description": "",
"author": "Robert Chaw",
"homepage": "https://github.com/RobertChaw/create-myapp",
"type": "module",
"bin": {
"create-myapp": "index.js"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"files": [
"templates",
"index.js",
"dist"
],
"devDependencies": {
"@types/cross-spawn": "^6.0.5",
"@types/fs-extra": "^11.0.3",
"@types/minimist": "^1.2.4",
"@types/prompts": "^2.4.7",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"kolorist": "^1.8.0",
"lint-staged": "^15.0.2",
"minimist": "^1.2.8",
"prettier": "3.2.5",
"prompts": "^2.4.2",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
},
"keywords": [],
"license": "ISC"
}