-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@tscircuit/prompt-benchmarks",
"version": "0.0.33",
"main": "dist/index.js",
"repository": "github:tscircuit/prompt-benchmarks",
"homepage": "https://github.com/tscircuit/prompt-benchmarks#readme",
"bugs": "https://github.com/tscircuit/prompt-benchmarks/issues",
"license": "MIT",
"author": "Severin Ibarluzea",
"scripts": {
"build": "tsup-node lib/index.ts lib/code-runner/index.ts lib/code-runner-utils/index.ts --format esm --dts",
"start": "bun run eval:watch",
"test": "bun test --timeout 60000",
"eval": "evalite",
"eval:watch": "evalite watch",
"format": "biome format . --write"
},
"exports": {
"./code-runner": "./dist/code-runner/index.js",
"./code-runner-utils": "./dist/code-runner-utils/index.js",
".": "./dist/index.js"
},
"type": "module",
"devDependencies": {
"@anthropic-ai/sdk": "^0.31.0",
"@biomejs/biome": "^1.9.3",
"@tscircuit/core": "^0.0.269",
"@types/babel__standalone": "^7.1.7",
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"@types/react": "^18.3.11",
"@typescript/ata": "^0.9.7",
"@typescript/vfs": "^1.6.0",
"autoevals": "^0.0.108",
"react": "^18.3.1",
"tsup": "^8.3.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@babel/standalone": "^7.25.7",
"@tscircuit/featured-snippets": "^0.0.1",
"@tscircuit/footprinter": "^0.0.102",
"debug": "^4.3.7",
"dotenv": "^16.4.7",
"evalite": "^0.8.4",
"extract-codefence": "^0.0.4",
"toml": "^3.0.0"
}
}