-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 971 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
29
30
31
32
33
34
35
{
"name": "@kanru/rage-wasm",
"collaborators": [
"Kan-Ru Chen <[email protected]>"
],
"version": "0.3.2",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kanru/rage-wasm.git"
},
"scripts": {
"build": "RUSTFLAGS='-C target-feature=+atomics,+bulk-memory,+mutable-globals' rollup -c rollup.config.mjs",
"test": "web-test-runner tests/**/*.test.js --node-resolve --playwright --browsers chromium firefox webkit",
"clean": "cargo clean"
},
"files": [
"dist/index.js",
"index.d.ts",
"LICENSE_APACHE",
"LICENSE_MIT"
],
"type": "module",
"module": "dist/index.js",
"types": "index.d.ts",
"sideEffects": false,
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@wasm-tool/rollup-plugin-rust": "^2.4.5",
"@web/test-runner": "^0.18.0",
"@web/test-runner-playwright": "^0.11.0",
"rollup": "^4.9.6",
"rollup-plugin-re": "^1.0.7"
}
}