-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.18 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
{
"name": "hellm-world",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"llm": "bun index.ts run",
"train": "bun index.ts train",
"init-model": "bun index.ts init-model",
"describe": "bun index.ts describe",
"chart-loss": "bun index.ts chart-loss",
"test": "vitest run",
"test:gpu": "bun test --preload ./bun-preload.ts",
"test:gpu:all": "bun test --preload ./bun-preload.ts $(find . -name '*.gpu-test.ts' -not -path './node_modules/*')",
"bench": "./scripts/bench-all.sh",
"typecheck": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@11.4.0+sha512.f0febc7e37552ab485494a914241b338e0b3580b93d54ce31f00933015880863129038a1b4ae4e414a0ee63ac35bf21197e990172c4a68256450b5636310968f",
"dependencies": {
"@inquirer/prompts": "^8.4.2",
"bun-webgpu": "^0.1.7",
"commander": "^14.0.3",
"typegpu": "^0.11.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.6.0",
"@webgpu/types": "^0.1.69",
"sharp": "^0.34.5",
"typescript": "^6.0.2",
"unplugin-typegpu": "^0.11.3",
"vitest": "^4.1.4"
}
}