-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 929 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
{
"name": "fathom",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "WebGPU feasibility spike: can we render ~1M LLM-span particles as a flowing river at 60fps? Go/no-go before building Fathom.",
"scripts": {
"dev": "npm --prefix app run dev",
"build": "npm --prefix app run build",
"app:install": "npm --prefix app install",
"server:install": "npm --prefix server install",
"server": "npm --prefix server start",
"serve:spike": "python -m http.server 8971 --directory spike",
"bench": "node spike/bench.mjs",
"sample": "node synth-traces.mjs",
"ingest": "node ingest.mjs data/sentinel-traces-raw.json traces.json",
"record": "node record.mjs traces.json fathom-river 18",
"record:sample": "node record.mjs traces.sample.json cinema-sample 8",
"app:record": "node app/record.mjs"
},
"devDependencies": {
"playwright-core": "^1.49.0"
}
}