-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "visually-3d",
"version": "0.11.0",
"description": "Interactive 3D machinery visualization. Run `npx visually-3d` to open a local GUI that speaks to your Claude CLI.",
"type": "module",
"bin": {
"visually-3d": "./bin/visually.js"
},
"files": [
"bin",
"lib",
"server",
"scripts",
"prompts",
"examples",
"docs/schema.json",
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite --host 0.0.0.0",
"dev:proxy": "vite --host 0.0.0.0 --mode proxy",
"build:cli": "tsc -p tsconfig.cli.json",
"lint": "eslint lib server bin src",
"samples:thumbs": "node scripts/render-samples.mjs",
"build": "npm run build:cli && npm run samples:thumbs && tsc -b && vite build",
"preview": "vite preview --host 0.0.0.0",
"start": "node bin/visually.js",
"start:no-open": "node bin/visually.js --no-open",
"serve": "node bin/visually.js serve",
"cli": "node bin/visually.js",
"deploy": "npm run build && npx wrangler deploy",
"test": "npm run build:cli && node --test test/*.test.mjs",
"test:smoke": "node test/smoke.mjs",
"smoke": "node test/smoke.mjs",
"prepack": "npm run build"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"htm": "^3.1.1",
"ink": "^7.1.0",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"react": "19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.4.2",
"@types/node": "^25.9.3",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/three": "latest",
"@vitejs/plugin-react": "latest",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"highlight.js": "^11.11.1",
"ink-testing-library": "^4.0.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"three": "^0.181.2",
"typescript": "latest",
"typescript-eslint": "^8.61.1",
"vite": "latest"
},
"keywords": [
"3d",
"visualization",
"claude",
"threejs",
"react-three-fiber",
"cli"
],
"license": "MIT",
"author": "NyxFoundation",
"repository": {
"type": "git",
"url": "git+https://github.com/NyxFoundation/visually-3d.git"
},
"homepage": "https://github.com/NyxFoundation/visually-3d#readme",
"bugs": {
"url": "https://github.com/NyxFoundation/visually-3d/issues"
}
}