-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json.hbs
More file actions
36 lines (36 loc) · 828 Bytes
/
package.json.hbs
File metadata and controls
36 lines (36 loc) · 828 Bytes
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
{
"name": "{{answers.project.name}}",
"version": "0.0.1",
"license": "See license in LICENSE",
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0",
"npm": "^9.0.0 || ^10.0.0 || ^11.0.0"
},
"ccExtensibility": {
"extends": "{{template.source.name}}",
"overridesDir": "overrides"
},
"devDependencies": {
"{{template.source.name}}": "{{answers.general.packageJSON.version}}"
},
"scripts": {
{{#each answers.general.packageJSON.scripts}}
"{{@key}}": "{{{script this}}}"{{#unless @last}},{{/unless}}
{{/each}}
},
"bundlesize": [
{
"path": "build/main.js",
"maxSize": "44 kB"
},
{
"path": "build/vendor.js",
"maxSize": "320 kB"
}
],
"browserslist": [
"iOS >= 9.0",
"Android >= 4.4.4",
"last 4 ChromeAndroid versions"
]
}