-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 761 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 761 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": "@changedown/benchmarks",
"version": "0.5.0",
"private": true,
"type": "module",
"main": "dist/harness/index.js",
"scripts": {
"build": "tsc",
"trial": "node dist/harness/run-trial-cli.js",
"benchmark": "node dist/harness/run-full-benchmark.js",
"analyze-tokens": "tsx harness/analyze-tokens.ts",
"verify": "tsx harness/verify.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@opencode-ai/sdk": "^1.1.0",
"@vscode/test-cli": "0.0.11",
"esbuild": "0.27.4",
"happy-dom": "^20.8.9",
"mocha": "^11.3.0",
"vite": "^8.0.10"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tiktoken": "^1.0.22",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
}
}