-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.68 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "holocron",
"version": "0.0.1",
"private": true,
"description": "Holocron — Star Wars universe explorer. Galaxy + timeline + lineage + datapad, one selection state.",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"build:kb": "tsx scripts/build-kb.ts",
"build:lanes": "tsx scripts/build-lanes.ts",
"build:lineage": "tsx scripts/build-lineage.ts",
"build:embeddings": "tsx scripts/build-embeddings.ts",
"build:descriptions": "tsx scripts/build-descriptions.ts",
"build:llm-descriptions": "tsx scripts/build-llm-descriptions.ts",
"build:wars": "tsx scripts/build-wars.ts",
"build:legends": "tsx scripts/build-legends-content.ts",
"build:planet-images": "tsx scripts/build-planet-images.ts",
"build:person-images": "tsx scripts/build-person-images.ts",
"build:sequel-planets": "tsx scripts/build-sequel-planets.ts"
},
"dependencies": {
"@orama/orama": "^3.0.4",
"@phosphor-icons/react": "^2.1.10",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.0",
"3d-force-graph": "^1.80.0",
"geist": "^1.3.1",
"gsap": "^3.12.5",
"motion": "^11.15.0",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.171.0",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/three": "^0.171.0",
"@xenova/transformers": "^2.17.2",
"postcss": "^8.4.49",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}