-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
16 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "bnot",
"private": true,
"scripts": {
"dev": "cargo build -p bnot-bridge --release && tauri dev",
"build": "pnpm --filter bnot-sidecar build && cargo build -p bnot-bridge --release && tauri build",
"build:dev": "pnpm --filter bnot-sidecar build && cargo build -p bnot-bridge --release && tauri build --config apps/desktop/tauri.dev.conf.json && pkill -x bnot 2>/dev/null; rm -rf /Applications/Bnot.app && cp -R target/release/bundle/macos/Bnot.app /Applications/Bnot.app && echo 'installed → /Applications/Bnot.app'",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0"
}
}