-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·27 lines (27 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·27 lines (27 loc) · 1002 Bytes
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
{
"name": "sre-ide",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build:mac": "cd src && npm run build && cd .. && tauri build --target aarch64-apple-darwin",
"install:mac": "./install.sh",
"install:direct": "./install-direct.sh",
"create-dmg": "./create-dmg.sh",
"cleanup-dmgs": "./cleanup-dmgs.sh",
"dev": "cd src && npm run dev",
"build": "cd src && npm run build",
"build:windows": "cd src && npm run build && cd .. && tauri build --target x86_64-pc-windows-msvc",
"build:linux": "cd src && npm run build && cd .. && tauri build --target x86_64-unknown-linux-gnu",
"build:all": "npm run build:mac && npm run build:windows && npm run build:linux",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"install:all": "cd src && npm install",
"lint": "cd src && npm run lint",
"preview": "cd src && npm run preview"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0"
}
}