forked from solo-io/proxy-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.38 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"scripts": {
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm --use abort=abort_proc_exit -t build/untouched.wat --sourceMap http://127.0.0.1:8081/build/untouched.wasm.map --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm --use abort=abort_proc_exit -t build/optimized.wat --sourceMap --optimize",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
"server": "ws --log.format dev",
"docs": "typedoc --out ./docs assembly --ignoreCompilerErrors --name 'AssemblyScript Proxy Runtime'"
},
"devDependencies": {
"assemblyscript": "^0.14.9",
"http-server": "^0.12.3",
"local-web-server": "^3.0.7",
"minimist": ">=1.2.2",
"typedoc": "^0.16.11"
},
"name": "@solo-io/proxy-runtime",
"description": "Use this SDK to write extensions for the proxy WASM ABI",
"version": "0.1.12",
"main": "assembly/index.ts",
"directories": {
"doc": "docs"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/solo-io/proxy-runtime.git"
},
"keywords": [
"wasm",
"proxy"
],
"author": "Yuval Kohavi",
"license": " Apache-2.0",
"bugs": {
"url": "https://github.com/solo-io/proxy-runtime/issues"
},
"homepage": "https://github.com/solo-io/proxy-runtime#readme",
"files": [
"/assembly",
"package-lock.json",
"index.js"
]
}