-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.11 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
92
93
94
95
96
97
{
"name": "tempest",
"private": true,
"version": "0.1.9",
"type": "module",
"workspaces": [
"web",
"docs"
],
"scripts": {
"dev": "tauri dev",
"dev:frontend": "vite",
"dev:web": "npm run dev --workspace=tempest-web",
"dev:docs": "npm run dev --workspace=tempest-docs",
"build": "tauri build && node scripts/collect-artifacts.mjs",
"postinstall": "node scripts/install-atlas.mjs && node scripts/install-claude-bridge.mjs",
"build:frontend": "tsc && vite build",
"build:web": "npm run build --workspace=tempest-web",
"build:docs": "npm run build --workspace=tempest-docs",
"preview": "vite preview",
"test": "node tests/run.mjs",
"tauri": "tauri"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.10",
"@ai-sdk/deepseek": "^3.0.6",
"@ai-sdk/google": "^4.0.10",
"@ai-sdk/groq": "^4.0.6",
"@ai-sdk/mistral": "^4.0.7",
"@ai-sdk/openai": "^4.0.9",
"@ai-sdk/xai": "^4.0.9",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@gsap/react": "^2.1.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@types/d3-force": "^3.0.10",
"@usetempest/atlas": "^1.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.11.1",
"ai": "^7.0.18",
"codemirror": "^6.0.2",
"cytoscape": "^3.34.0",
"cytoscape-fcose": "^2.2.0",
"d3-force": "^3.0.0",
"geist": "^1.7.2",
"github-markdown-css": "^5.9.0",
"gsap": "^3.15.0",
"lucide-react": "^1.21.0",
"metal-fx": "^1.0.4",
"motion": "^12.42.2",
"posthog-js": "^1.409.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"yaml": "^2.9.0"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "4.62.2",
"@rollup/rollup-darwin-x64": "4.62.2",
"@rollup/rollup-linux-x64-gnu": "4.62.2",
"@rollup/rollup-linux-x64-musl": "4.62.2",
"@rollup/rollup-win32-x64-msvc": "4.62.2",
"@tauri-apps/cli-darwin-arm64": "2.11.4",
"@tauri-apps/cli-darwin-universal": "2.11.4",
"@tauri-apps/cli-linux-x64-gnu": "2.11.4",
"@tauri-apps/cli-linux-x64-musl": "2.11.4",
"@tauri-apps/cli-win32-x64-msvc": "2.11.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/cytoscape": "^3.21.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}