-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.59 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
107
108
109
110
111
112
113
114
115
{
"name": "composers-hub",
"version": "1.1.0",
"description": "A comprehensive resource hub and manual for music composers",
"main": "src/main/main.js",
"scripts": {
"dev": "concurrently -n \"vite,electron\" -c \"bgBlue.bold,bgGreen.bold\" \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "npm run compile:main && wait-on tcp:5173 && cross-env NODE_ENV=development electron .",
"compile:main": "tsc src/main/main.ts src/main/preload.ts src/main/database.ts src/main/ipc.ts --outDir src/main --module commonjs --esModuleInterop --skipLibCheck",
"build": "npm run build:vite && npm run build:electron",
"build:vite": "vite build",
"build:electron": "electron-builder",
"build:web": "vite build --config vite.config.web.ts",
"preview": "vite preview",
"preview:web": "vite preview --config vite.config.web.ts",
"dev:web": "vite --config vite.config.web.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"keywords": [
"electron",
"music",
"composer",
"daw",
"vst",
"audio"
],
"author": "GuildMaster Development",
"license": "MIT",
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.39",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.5.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^3.2.4",
"wait-on": "^9.0.5"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"better-sqlite3": "^12.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-store": "^8.2.0",
"lucide-react": "^0.577.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3",
"tailwind-merge": "^2.6.1",
"zustand": "^4.5.7"
},
"build": {
"appId": "me.davidcanhelp.composershub",
"productName": "Composer's Hub",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.music",
"icon": "resources/icon.icns"
},
"win": {
"icon": "resources/icon.ico",
"target": "nsis"
},
"linux": {
"icon": "resources/icon.png",
"target": "AppImage",
"category": "Audio"
}
}
}