-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1003 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "tuneforge",
"module": "index.ts",
"type": "module",
"private": true,
"bin": {
"tuneforge": "./src/cli/index.ts",
"token-analyze": "./src/cli/tokenAnalysis.ts"
},
"scripts": {
"start": "bun run ./src/cli/index.ts",
"token-analyze": "bun run ./src/cli/tokenAnalysis.ts"
},
"devDependencies": {
"@types/bun": "^1.2.5"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@ai-sdk/google": "^1.1.25",
"@huggingface/hub": "^1.1.0",
"@types/archiver": "^6.0.3",
"@types/async-retry": "^1.4.9",
"@types/papaparse": "^5.3.15",
"@types/pdf-parse": "^1.1.4",
"ai": "^4.1.61",
"archiver": "^7.0.1",
"async-retry": "^1.3.3",
"commander": "^13.1.0",
"gpt-tokenizer": "^2.9.0",
"p-map": "^7.0.3",
"papaparse": "^5.5.2",
"pdf-parse": "^1.1.1",
"picocolors": "^1.1.1",
"zod": "^3.24.2"
},
"patchedDependencies": {
"pdf-parse@1.1.1": "patches/pdf-parse@1.1.1.patch"
}
}