-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 794 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 794 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
26
27
28
29
30
{
"name": "kbench",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"kbench": "./bin/kbench"
},
"scripts": {
"bench:bundle:cli": "mkdir -p .bench && esbuild src/cli/kbench.ts --bundle --platform=node --format=cjs --target=node20 --outfile=.bench/kbench.cjs",
"prepare": "npm run bench:bundle:cli",
"typecheck": "tsc --noEmit",
"test": "npm run bench:bundle:cli && vitest run",
"test:watch": "npm run bench:bundle:cli && vitest"
},
"dependencies": {
"@shareai-lab/kode-sdk": "^2.7.5"
},
"devDependencies": {
"@emnapi/core": "^1.7.1",
"@emnapi/runtime": "^1.7.1",
"@types/node": "^20.17.57",
"esbuild": "^0.25.4",
"typescript": "^5.8.3",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}