-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.03 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
{
"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 && vite build --config ./src/vite.config.ts && tauri build && cargo build --release --manifest-path src-tauri/lib/blue-compositor/Cargo.toml && mkdir -p ~/.hackeros/Blue-Environment/libs/ && mkdir -p ~/.hackeros/Blue-Enviroment/ && cp target/release/blue-environment ~/.hackeros/Blue-Enviroment/blue-environment && cp src-tauri/lib/blue-compositor/target/release/blue-compositor ~/.hackeros/Blue-Environment/libs/blue-compositor && echo 'Build OK'",
"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/blue-compositor",
"build:shell": "node ./src/generate_icon.js && tsc -p ./src/tsconfig.json && vite build --config ./src/vite.config.ts && tauri build && mkdir -p ~/.hackeros/Blue-Enviroment/ && cp target/release/blue-environment ~/.hackeros/Blue-Enviroment/blue-environment",
"preview": "vite preview --config ./src/vite.config.ts",
"tauri": "tauri",
"lint": "tsc -p ./src/tsconfig.json --noEmit",
"launcher": "python3 launcher/main.py"
},
"dependencies": {
"@google/genai": "^1.17.0",
"@monaco-editor/react": "^4.6.0",
"@tauri-apps/api": "^1.5.0",
"lucide-react": "^0.563.0",
"monaco-editor": "^0.45.0",
"monaco-editor-webpack-plugin": "^7.1.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"
}
}