-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 905 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
{
"name": "compute-starter-kit-javascript-default",
"version": "0.2.0",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fastly/compute-starter-kit-js-proto.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastly/compute-starter-kit-js-proto/issues"
},
"homepage": "https://developer.fastly.com/solutions/starters/compute-starter-kit-javascript-default",
"engines": {
"node": "^16"
},
"devDependencies": {
"core-js": "^3.19.1",
"css-loader": "^6.5.1",
"html-loader": "^3.0.1",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@fastly/js-compute": "^0.2.1"
},
"scripts": {
"prebuild": "webpack",
"build": "js-compute-runtime --skip-pkg bin/index.js bin/main.wasm",
"deploy": "npm run build && fastly compute deploy"
}
}