forked from cloudflare/workers-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1 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
{
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.29.4",
"@cloudflare/workers-types": "^4.20240909.0"
},
"name": "workers-rs",
"version": "0.0.12",
"author": "workers-rs@cloudflare.com",
"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": "^3.20241230.0",
"typescript": "^5.8.3",
"undici": "^5.29.0",
"uuid": "^11.1.0",
"vitest": "^2.1.9"
},
"scripts": {
"install": "cargo install --path ./worker-build --force --debug",
"test": "cd worker-sandbox && NO_MINIFY=1 worker-build --dev && NODE_OPTIONS=--experimental-vm-modules npx vitest run",
"test-http": "cd worker-sandbox && NO_MINIFY=1 worker-build --dev --features http && NODE_OPTIONS=--experimental-vm-modules npx vitest run"
}
}