-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 861 Bytes
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
{
"name": "jev-auto-router",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">=22"
},
"scripts": {
"setup": "node scripts/setup.mjs",
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test dist/test/*.test.js",
"bench:jev-smoke": "npm run build && node dist/bench/jev-smoke.js",
"bench:active-evaluation": "npm run build && node dist/bench/controlled-active.js",
"bench:evaluate": "npm run build && node dist/bench/evaluate.js",
"dashboard": "node dist/src/index.js",
"release": "node scripts/release.mjs",
"start": "node dist/src/index.js"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
},
"dependencies": {}
}