-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "wasmedge-extensions",
"version": "0.8.1",
"description": "Second State WebAssembly VM for Node.js Addon with all extensions",
"keywords": [
"wasm",
"rust",
"webassembly",
"wasi",
"runtime",
"serverless",
"tensorflow",
"fucntion-as-a-service"
],
"repository": "https://github.com/second-state/wasmedge-extensions.git",
"license": "Apache-2.0",
"main": "index.js",
"binary": {
"module_name": "wasmedge-extensions",
"module_path": "./lib/binding/{platform}-{arch}/",
"host": "https://github.com/second-state/wasmedge-extensions/releases/download/",
"remote_path": "{version}",
"package_name": "{module_name}-{platform}-{arch}.tar.gz"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"@mapbox/node-pre-gyp": "^1.0.0",
"npm": "^7.11.1"
},
"devDependencies": {
"mocha": "^8.1.3",
"node-gyp-cache": "^0.2.1"
},
"scripts": {
"preinstall": "./scripts/preinstall.sh",
"install": "node-pre-gyp install --fallback-to-build"
}
}