-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 KB
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
{
"name": "@eggjs/create",
"version": "0.0.2",
"description": "eggjs create template",
"keywords": [
"create",
"eggjs",
"template"
],
"homepage": "https://github.com/eggjs/create",
"bugs": {
"url": "https://github.com/eggjs/create/issues"
},
"license": "MIT",
"author": "eggjs",
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/create.git"
},
"files": [
"templates"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "vp config"
},
"devDependencies": {
"@types/node": "catalog:",
"vite-plus": "catalog:"
},
"packageManager": "pnpm@10.33.2",
"createConfig": {
"templates": [
{
"name": "monorepo",
"description": "Monorepo",
"template": "./templates/monorepo",
"monorepo": true
},
{
"name": "app",
"description": "Egg app template",
"template": "./templates/app"
},
{
"name": "plugin",
"description": "Egg plugin template",
"keywords": [
"plugin"
],
"template": "./templates/plugin"
}
]
}
}