-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.02 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "nosuckshell",
"private": true,
"description": "Monorepo root — desktop app lives in apps/desktop",
"repository": {
"type": "git",
"url": "https://github.com/d0dg3r/NoSuckShell.git"
},
"bugs": {
"url": "https://github.com/d0dg3r/NoSuckShell/issues"
},
"homepage": "https://github.com/d0dg3r/NoSuckShell#readme",
"scripts": {
"tauri:dev": "node scripts/run-tauri-dev.cjs",
"tauri:build": "node scripts/ensure-desktop-deps.cjs && npm --prefix apps/desktop run tauri:build",
"desktop:dev": "node scripts/ensure-desktop-deps.cjs && npm --prefix apps/desktop run dev",
"desktop:build": "node scripts/ensure-desktop-deps.cjs && npm --prefix apps/desktop run build",
"desktop:test": "node scripts/ensure-desktop-deps.cjs && npm --prefix apps/desktop run test",
"desktop:e2e": "node scripts/ensure-desktop-deps.cjs && npm --prefix apps/desktop run test:e2e",
"desktop:install": "npm --prefix apps/desktop install",
"screenshots": "npm --prefix apps/desktop run screenshots"
}
}