forked from AssemblyScript/wasi-shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 860 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
{
"name": "@assemblyscript/wasi-shim",
"description": "Patches the AssemblyScript compiler to utilize WASI imports instead of Web APIs.",
"version": "0.0.0",
"author": "The AssemblyScript Authors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/wasi-shim.git"
},
"type": "module",
"devDependencies": {
"assemblyscript": "latest"
},
"scripts": {
"test": "npm run test:build && npm run test:run",
"test:build": "asc --config ./asconfig.json tests/index.ts --runtime stub --outFile tests/index.wasm --textFile tests/index.wat",
"test:run": "node --experimental-wasi-unstable-preview1 tests/index.js"
},
"files": [
"assembly/",
"asconfig.json"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/assemblyscript"
}
}