-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.28 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.28 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
{
"name": "@worldlinkstudio/mpcsample",
"version": "0.0.1",
"description": "Web + desktop Akai MPC sample drum machine with .xpj project export.",
"author": "World Link Studio",
"type": "module",
"comment:main": "Electron reads `main` as its entry point — it MUST be the built main-process file (out/main/index.js) so `electron-vite dev` and the packaged app run the app, not the library. Library consumers resolve via the `exports` map below (which takes precedence over `main`), and the library bundle stays at ./dist/index.js via `module`/`exports`.",
"main": "./out/main/index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-kits": "tsx scripts/build-kits.mjs",
"electron:dev": "electron-vite dev",
"electron:build": "electron-vite build",
"electron:preview": "electron-vite preview",
"electron:package": "electron-vite build && electron-builder --dir",
"electron:dist": "electron-vite build && electron-builder --mac",
"typecheck": "tsc -p tsconfig.lib.json --noEmit && tsc -p tsconfig.node.json --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "vitest run"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.19.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.5",
"@types/webmidi": "^2.0.8",
"@vitejs/plugin-react": "^4.2.0",
"electron": "42.3.0",
"electron-builder": "26.8.1",
"electron-vite": "^4.0.0",
"jsdom": "22.1.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tsx": "4.22.4",
"typescript": "^5.8.3",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "4.0.18"
},
"peerDependencies": {
"react": ">=18.0.0 || ^19.0.0",
"react-dom": ">=18.0.0 || ^19.0.0"
},
"dependencies": {
"@tailwindcss/vite": "4.1.12",
"clsx": "^2.1.1",
"fflate": "^0.8.2",
"lucide-react": "0.545.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "4.1.14",
"tone": "^15.1.22",
"zustand": "^5.0.0"
}
}