-
Notifications
You must be signed in to change notification settings - Fork 1
/
info.json
43 lines (43 loc) · 1017 Bytes
/
info.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
{
"template": {
"name": "project-name",
"version": "1.0.0",
"scripts": {
"build": "REPLACE_ON_CREATE",
"package": "REPLACE_ON_CREATE",
"start": "REPLACE_ON_CREATE"
},
"author": "REPLACE_ON_CREATE",
"license": "REPLACE_ON_CREATE",
"dependencies": {
"archiver": "^6.0.1"
},
"devDependencies": {
"express": "^4.18.2"
}
},
"overrides": {
"javascript": {
"scripts": {
"build": null,
"package": "node package.js",
"start": "node server.js"
}
},
"typescript": {
"scripts": {
"build": "tsc; globstar -- cp -r public/**/* build/",
"package": "npm run build && node package.js",
"start": "node server.js"
},
"devDependencies": {
"globstar": "^1.0.0",
"typescript": "^5.3.3",
"express": "^4.18.2"
}
},
"assemblyscript": {
"WARNING": "AssemblyScript projects are not supported yet. Support is coming soon!"
}
}
}