-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 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
35
36
37
38
39
{
"name": "diffsvmc",
"private": true,
"type": "module",
"scripts": {
"branch:audit": "python3 scripts/verify_branch_coverage.py",
"test": "vitest run",
"test:website-smoke": "vitest run packages/svmc-js/test/qvidja-website-smoke.test.ts --browser.enabled false",
"test:js:float32": "SVMC_JS_DTYPE=float32 vitest run",
"test:js:float64": "SVMC_JS_DTYPE=float64 vitest run",
"test:js:precision-modes": "pnpm test:js:float32 && pnpm test:js:float64",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm -C packages/svmc-js check && tsc --noEmit",
"build": "pnpm -C website build"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/browser": "^3.2.4",
"eslint": "^9.27.0",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.2",
"vitest": "^3.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@hamk-uas/jax-js-nonconsuming"
],
"overrides": {}
},
"packageManager": "pnpm@10.28.2",
"dependencies": {
"@hamk-uas/jax-js-nonconsuming": "link:../jax-js-nonconsuming"
}
}