forked from wasm-tool/rollup-plugin-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "@wasm-tool/rollup-plugin-rust",
"author": "Pauan <[email protected]>",
"description": "Rollup plugin for bundling and importing Rust crates.",
"version": "2.3.3",
"license": "MIT",
"repository": "github:wasm-tool/rollup-plugin-rust",
"homepage": "https://github.com/wasm-tool/rollup-plugin-rust#readme",
"bugs": "https://github.com/wasm-tool/rollup-plugin-rust/issues",
"main": "src/index.js",
"scripts": {
"test:foo": "cd tests/src/foo && yarn install",
"test": "yarn test:foo && cd tests && rimraf dist/js && rollup --config",
"test:watch": "yarn test:foo && cd tests && rimraf dist/js && rollup --config --watch",
"test:serve": "live-server tests/dist"
},
"directories": {
"example": "example"
},
"keywords": [
"rollup-plugin",
"rust-wasm",
"wasm",
"rust",
"rollup",
"plugin",
"webassembly",
"wasm-bindgen"
],
"dependencies": {
"binaryen": "^110.0.0",
"chalk": "^4.0.0",
"glob": "^8.0.1",
"node-fetch": "^2.0.0",
"rimraf": "^3.0.0",
"@rollup/pluginutils": "^4.2.1",
"tar": "^6.1.11",
"toml": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^14.0.1",
"live-server": "^1.2.1",
"rollup": "^2.70.2"
}
}