-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
59 lines (59 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
{
"name": "@wasmer/sdk",
"version": "0.2.0",
"main": "dist/Library.cjs",
"module": "dist/Library.mjs",
"unpkg": "dist/Library.umd.js",
"types": "dist/lib.d.ts",
"keywords": [
"webassembly",
"wasm",
"wasi",
"wasix"
],
"description": "Isomorphic Javascript library for interacting with WASI Modules in Node.js and the Browser.",
"author": "Wasmer Engineering Team <engineering@wasmer.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wasmerio/wasmer-js/issues"
},
"homepage": "https://github.com/wasmerio/wasmer-js",
"repository": {
"type": "git",
"url": "git+https://github.com/wasmerio/wasmer-js.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "wasm-pack build --release --target=web --weak-refs --no-pack && wasm-opt pkg/wasmer_js_bg.wasm -O2 -o pkg/wasmer_js_bg.wasm && rollup -c --environment BUILD:production",
"build:dev": "wasm-pack build --dev --target=web --weak-refs --no-pack && rollup -c --environment BUILD:development",
"dev": "rollup -c -w",
"test": "web-test-runner --node-resolve --esbuild-target auto --config ./web-dev-server.config.mjs",
"clean": "rimraf dist coverage pkg target"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-node-resolve": "~15.0.1",
"@rollup/plugin-terser": "~0.1.0",
"@rollup/plugin-typescript": "^10.0.1",
"@rollup/plugin-url": "^8.0.1",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "^0.17.0",
"rimraf": "~3.0.2",
"rollup": "~3.5.1",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead"
}