107 lines
2.8 KiB
JSON
107 lines
2.8 KiB
JSON
{
|
|
"name": "mv-visualizer",
|
|
"version": "0.1.0",
|
|
"description": "Lokales Desktop-Tool zur Erstellung einfacher Musikvideos mit Audio-Visualizern.",
|
|
"type": "module",
|
|
"main": "dist-electron/main/index.js",
|
|
"scripts": {
|
|
"dev": "concurrently -k \"vite --host 127.0.0.1\" \"wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
|
|
"build": "tsc -p tsconfig.json && vite build && vite build --config vite.main.config.ts && vite build --config vite.preload.config.ts",
|
|
"build:video": "vite build --config vite.video.config.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"package": "pnpm build && pnpm build:video && electron-builder",
|
|
"remotion:studio": "remotion studio src/video/remotion-entry.ts",
|
|
"remotion:preview": "remotion preview src/video/remotion-entry.ts"
|
|
},
|
|
"keywords": [
|
|
"audio-visualizer",
|
|
"electron",
|
|
"remotion",
|
|
"music-video"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@electron-toolkit/utils": "^4.0.0",
|
|
"@remotion/bundler": "^4.0.379",
|
|
"@remotion/media-parser": "^4.0.379",
|
|
"@remotion/media-utils": "^4.0.379",
|
|
"@remotion/renderer": "^4.0.379",
|
|
"@vitejs/plugin-react": "^5.0.4",
|
|
"electron-store": "^10.1.0",
|
|
"lucide-react": "^0.468.0",
|
|
"nanoid": "^5.0.9",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"remotion": "^4.0.379",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^19.0.2",
|
|
"@types/react-dom": "^19.0.2",
|
|
"@vitejs/plugin-react-swc": "^3.7.2",
|
|
"concurrently": "^9.1.0",
|
|
"cross-env": "^7.0.3",
|
|
"electron": "^33.2.1",
|
|
"electron-builder": "^25.1.8",
|
|
"typescript": "^5.7.2",
|
|
"vite": "^6.0.3",
|
|
"vitest": "^2.1.8",
|
|
"wait-on": "^8.0.1"
|
|
},
|
|
"build": {
|
|
"appId": "cloud.hstgr.srv953353.mvvisualizer",
|
|
"productName": "MV Visualizer",
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"files": [
|
|
"dist/**",
|
|
"dist-electron/**",
|
|
"src/shared/**",
|
|
"src/video/**",
|
|
"tsconfig.json",
|
|
"package.json"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "dist-video",
|
|
"to": "dist-video",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
},
|
|
{
|
|
"from": "src",
|
|
"to": "remotion-src/src",
|
|
"filter": [
|
|
"shared/**",
|
|
"video/**",
|
|
"!**/*.test.ts"
|
|
]
|
|
},
|
|
{
|
|
"from": "tsconfig.json",
|
|
"to": "remotion-src/tsconfig.json"
|
|
}
|
|
],
|
|
"asarUnpack": [
|
|
"node_modules/@esbuild/**",
|
|
"node_modules/esbuild/**",
|
|
"node_modules/@remotion/compositor-*/**"
|
|
],
|
|
"win": {
|
|
"target": "nsis"
|
|
},
|
|
"mac": {
|
|
"target": "dmg"
|
|
},
|
|
"linux": {
|
|
"target": "AppImage"
|
|
}
|
|
}
|
|
}
|