-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@whouu/create-app",
"version": "1.1.3",
"type": "module",
"bin": {
"create-app": "index.js"
},
"files": [
"index.js",
"template-*/**/*",
"dist"
],
"description": "Create an app powered by @whouu/create-app",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"release": "npm publish --registry https://registry.npmjs.org --access public",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PassionZale/create-app.git"
},
"author": "Lei Zhang",
"license": "MIT",
"engines": {
"node": ">=16"
},
"bugs": {
"url": "https://github.com/PassionZale/create-app/issues"
},
"homepage": "https://create-app.lovchun.com",
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"unbuild": "^2.0.0",
"vitepress": "^1.0.0-rc.22"
}
}