-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.08 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "video-studio",
"version": "0.1.7",
"private": true,
"type": "module",
"description": "Desktop agent-driven video studio (Electron + Claude Agent SDK + HyperFrames)",
"main": "electron/dist/main.js",
"scripts": {
"dev": "pnpm dev:setup && concurrently -k -n vite,agent,tsc,electron -c blue,yellow,green,magenta \"pnpm dev:renderer\" \"pnpm dev:agent\" \"pnpm dev:electron:tsc\" \"pnpm dev:electron:run\"",
"dev:setup": "pnpm --filter @video-studio/agent build && tsc -p electron/tsconfig.json && node scripts/finalize-electron-build.mjs",
"dev:renderer": "vite",
"dev:agent": "pnpm --filter @video-studio/agent dev",
"dev:electron:tsc": "tsc -p electron/tsconfig.json -w --preserveWatchOutput",
"dev:electron:run": "wait-on tcp:5173 && node scripts/dev-electron.mjs",
"build": "pnpm --filter @video-studio/agent build && tsc -p electron/tsconfig.json && node scripts/finalize-electron-build.mjs && vite build",
"build:icon": "node scripts/build-icon.mjs",
"bundle": "pnpm build && pnpm build:icon && electron-builder",
"bundle:win": "pnpm build && electron-builder --win",
"bundle:mac": "pnpm build && electron-builder --mac",
"bundle:linux": "pnpm build && electron-builder --linux",
"agent:build": "pnpm --filter @video-studio/agent build",
"agent:dev": "pnpm --filter @video-studio/agent dev"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^22.0.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"electron": "^33.0.0",
"electron-builder": "^25.1.8",
"sharp": "^0.33.5",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.0",
"vite": "^8.0.8",
"wait-on": "^8.0.1"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-updater": "^6.8.3",
"lucide-react": "^1.8.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0"
},
"build": {
"appId": "com.atelier.videostudio",
"productName": "Video Studio",
"files": [
"electron/dist/**/*",
"dist/renderer/**/*",
"agent/dist/**/*",
"agent/prompts/**/*",
"build/icon.png",
"build/icons/**/*",
"DESIGN.md",
"package.json"
],
"directories": {
"buildResources": "build",
"output": "dist/installers"
},
"publish": [
{
"provider": "github",
"owner": "hallelx2",
"repo": "video-studio"
}
],
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"electron-builder",
"esbuild",
"sharp"
]
}
}