-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.37 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.37 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": "blue-environment",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"dev": "vite --config src/vite.config.ts",
"build": "tsc -p src/tsconfig.json --noEmit && vite build --config src/vite.config.ts",
"build:tauri": "tauri build",
"build:compositor": "cargo build --release --manifest-path src-tauri/lib/blue-compositor/Cargo.toml && mkdir -p ~/.hackeros/Blue-Environment/libs/ && cp src-tauri/lib/blue-compositor/target/release/blue-compositor ~/.hackeros/Blue-Environment/libs/",
"build:all": "npm run build:compositor && npm run build:tauri && echo 'Full build OK'",
"preview": "vite preview --config src/vite.config.ts",
"tauri": "tauri",
"lint": "tsc -p src/tsconfig.json --noEmit"
},
"dependencies": {
"@google/genai": "^1.17.0",
"@monaco-editor/react": "^4.6.0",
"@tauri-apps/api": "^1.5.0",
"lucide-react": "^0.563.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.0",
"@types/node": "^20.11.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"vite": "^5.3.1"
}
}