-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 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
40
{
"name": "turing",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint --fix ./**/*.ts",
"create-train": "bun programs/arithmetic-tape/create-train.ts",
"create-test": "bun programs/arithmetic-tape/create-test.ts",
"prestart": "bun create-train && bun create-test",
"start": "bun programs/arithmetic-tape/test.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.76",
"@ai-sdk/openai": "^3.0.63",
"@anthropic-ai/sdk": "^0.20.9",
"@anthropic-ai/vertex-sdk": "^0.3.7",
"ai": "^6.0.177",
"chalk": "^5.4.1",
"openai": "^4.80.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/bun": "^1.2.0",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.14.0",
"typescript": "^5.7.3",
"typescript-eslint": "^7.18.0"
}
}