-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 827 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
{
"name": "gs-video",
"private": true,
"version": "0.1.0",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=24.14.0 <25",
"npm": ">=11.12.1 <12"
},
"workspaces": [
"apps/web",
"apps/desktop"
],
"scripts": {
"api:dev": ".venv\\Scripts\\python.exe tools\\run_browser_api.py",
"build:web": "npm run build --workspace @gs-video/web",
"dev:desktop-web": "npm run prepare:desktop && npm run dev --workspace @gs-video/web",
"dev:web": "npm run dev --workspace @gs-video/web",
"prepare:desktop": ".venv\\Scripts\\python.exe tools\\prepare_desktop_runtime.py --allow-missing-resources",
"tauri:dev": "node tools/run_tauri_dev.mjs",
"test:web": "vitest run --config apps/web/vitest.config.ts",
"typecheck:web": "npm run typecheck --workspace @gs-video/web"
}
}