forked from cloudflare/workers-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.74 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.74 KB
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
{
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.29.6",
"@cloudflare/workers-types": "^4.20250826.0"
},
"name": "workers-rs",
"version": "0.0.12",
"author": "[email protected]",
"description": "Monorepo for Worker Rust Bindings",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/cloudflare/workers-rs/issues"
},
"homepage": "https://github.com/cloudflare/workers-rs#readme",
"devDependencies": {
"@types/node": "^24.0.1",
"miniflare": "^4.20250923.0",
"typescript": "^5.8.3",
"undici": "7.14.0",
"uuid": "^11.1.0",
"vitest": "^3.2.4"
},
"scripts": {
"build": "cd wasm-bindgen && cargo build -p wasm-bindgen-cli --bin wasm-bindgen && cd .. && cargo build -p worker-build",
"bench": "cd benchmark && node --run build && node --run bench",
"test": "cd test && NO_MINIFY=1 WASM_BINDGEN_BIN=../wasm-bindgen/target/debug/wasm-bindgen ../target/debug/worker-build --dev && NODE_OPTIONS='--experimental-vm-modules' npx vitest run",
"test-http": "cd test && NO_MINIFY=1 WASM_BINDGEN_BIN=../wasm-bindgen/target/debug/wasm-bindgen ../target/debug/worker-build --release --features http && NODE_OPTIONS='--experimental-vm-modules' npx vitest run",
"test-panic-unwind": "cd test && NO_MINIFY=1 WASM_BINDGEN_BIN=../wasm-bindgen/target/debug/wasm-bindgen ../target/debug/worker-build --dev --panic-unwind && NODE_OPTIONS='--experimental-vm-modules' npx vitest run",
"test-mem": "cd test && npx wrangler dev --enable-containers=false",
"lint": "cargo clippy --features d1,queue --all-targets --workspace -- -D warnings",
"lint:fix": "cargo fmt && cargo clippy --features d1,queue --all-targets --workspace --fix -- -D warnings"
}
}