-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.98 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.98 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
{
"name": "alive-studio-midi-controller",
"version": "0.5.2",
"description": "Alive Studio MIDI Controller - MIDI controller bridge for OBS Studio with menubar integration",
"main": "dist/main/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:renderer\" \"npm run dev:main\"",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json && electron .",
"compile": "npm run compile:renderer && npm run compile:main",
"compile:renderer": "vite build",
"compile:main": "tsc -p tsconfig.main.json",
"build:mac": "npm run compile && electron-builder --mac --publish never",
"build:win": "npm run compile && electron-builder --win --publish never",
"build": "npm run compile && electron-builder --mac --win --publish never",
"release": "npm run build:mac && node scripts/release.js",
"type-check": "tsc --noEmit"
},
"keywords": [
"OBS",
"MIDI",
"Electron",
"menubar",
"Alive Studio",
"TypeScript",
"React"
],
"author": "GMO Pepabo, Inc.",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"electron": "^39.2.3",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.7.2",
"vite": "^7.2.4"
},
"dependencies": {
"@julusian/midi": "^3.6.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"obs-websocket-js": "^5.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7"
},
"build": {
"appId": "com.pepabo.alive-studio-midi-controller",
"productName": "Alive Studio MIDI Controller",
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/icon.png",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"LSUIElement": 1
}
},
"win": {
"icon": "assets/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Alive Studio MIDI Controller",
"uninstallDisplayName": "Alive Studio MIDI Controller",
"deleteAppDataOnUninstall": false
},
"files": [
"dist/**/*",
"assets/**/*"
],
"directories": {
"output": "release"
}
}
}