-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.27 KB
/
package.json
File metadata and controls
21 lines (21 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "rustnnpt",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Thin JavaScript WebNN shim on top of RustNN for upstream WPT conformance testing",
"scripts": {
"test:wpt:fetch": "node scripts/fetch-wpt.js",
"test:wpt:run": "node src/wpt/run-conformance.js",
"test:wpt:report": "node src/wpt/run-conformance.js --report-json reports/conformance.json --report-html reports/conformance.html",
"build:runner": "cargo build --manifest-path crates/wpt-runner/Cargo.toml",
"build:runner:coreml": "cargo build --manifest-path crates/wpt-runner/Cargo.toml --no-default-features --features backend-onnx,backend-coreml",
"build:runner:trtx-mock": "cargo build --manifest-path crates/wpt-runner/Cargo.toml --no-default-features --features backend-onnx,backend-trtx-mock",
"build:runner:all": "cargo build --manifest-path crates/wpt-runner/Cargo.toml --no-default-features --features backend-onnx,backend-coreml,backend-trtx,backend-trtx-mock",
"check:runner": "cargo check --manifest-path crates/wpt-runner/Cargo.toml",
"check:runner:all": "cargo check --manifest-path crates/wpt-runner/Cargo.toml --no-default-features --features backend-onnx,backend-coreml,backend-trtx,backend-trtx-mock"
},
"engines": {
"node": ">=20"
}
}