-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1007 Bytes
/
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
{
"name": "@viterjs/create-app",
"version": "3.0.2",
"description": "create viter app",
"keywords": [
"vitejs"
],
"author": "jerryYuX <[email protected]>",
"homepage": "https://github.com/ykfe/viter",
"license": "MIT",
"bin": {
"create-app": "index.js",
"cva": "index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykfe/viter.git",
"directory": "packages/create-app"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint-eslint": "eslint --cache --ext .ts,.tsx ./src",
"check-types": "tsc --noEmit",
"lint": "npm run lint-eslint & npm run check-types",
"declare-type": "tsc --emitDeclarationOnly",
"dev": "node ./index.js"
},
"bugs": {
"url": "https://github.com/ykfe/viter/issues"
},
"gitHead": "8d18cfcc65974c798cbca516cd64cbb89f28552b",
"dependencies": {
"enquirer": "^2.3.6",
"kolorist": "^1.2.9",
"minimist": "^1.2.5"
}
}