-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 864 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
{
"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": "oss@fastly.com",
"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",
"devDependencies": {
"core-js": "^3.15.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@fastly/js-compute": "^0.2.0",
"handlebars": "^4.7.7",
"showdown": "^1.9.1"
},
"scripts": {
"prebuild": "webpack",
"build": "js-compute-runtime --skip-pkg bin/index.js bin/main.wasm",
"deploy": "npm run build && fastly compute deploy"
}
}