-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 loc) · 1.27 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
44
45
46
47
48
49
{
"scripts": {
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"server": "ws --log.format dev",
"docs": "typedoc --out ./docs assembly --ignoreCompilerErrors --name 'AssemblyScript Proxy Runtime'"
},
"devDependencies": {
"assemblyscript": "^0.21.3",
"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.15",
"main": "assembly/index.ts",
"directories": {
"doc": "docs"
},
"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"
],
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}