-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
129 lines (129 loc) · 3.71 KB
/
package.json
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "nts-web",
"description": "A web controller for the Korg NTS-1",
"version": "4.0.0",
"type": "module",
"author": {
"name": "Oscar R.C.",
"email": "[email protected]",
"url": "https://oscarrc.me"
},
"repository": {
"url": "https://github.com/oscarrc/nts-web",
"type": "git"
},
"main": "public/electron.cjs",
"homepage": "./",
"private": true,
"scripts": {
"start": "vite --host",
"dev": "vite preview",
"build": "vite build",
"predeploy": "npm run build && cp build/index.html build/200.html",
"deploy": "surge build nts-web.oscarrc.me",
"test": "react-scripts test",
"eject": "react-scripts eject",
"bubblewrap:init": "bubblewrap init --manifest https://nts-web.oscarrc.me/manifest.webmanifest --directory dist/android/",
"bubblewrap:build": "cd dist/android && bubblewrap build",
"bubblewrap:update": "bubblewrap update --manifest https://nts-web.oscarrc.me/manifest.webmanifest",
"electron:start": "concurrently -k \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electronmon .\"",
"electron:build:win": "electron-builder build -w --x64 --ia32",
"electron:build:linux": "electron-builder build -l --x64"
},
"build": {
"appId": "me.oscarrc.nts_web.twa",
"productName": "NTS-web",
"artifactName": "NTS-web_${os}-${arch}-${version}.${ext}",
"files": [
"build/**/*",
"public/electron.cjs",
"node_modules/**/*"
],
"directories": {
"buildResources": "public",
"output": "dist/${platform}"
},
"win": {
"target": [
"portable",
"nsis"
],
"icon": "static/media/icons/icon.ico"
},
"portable": {
"artifactName": "NTS-web_${os}-${arch}-${version}_portable.${ext}"
},
"nsis": {
"oneClick": false
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"maintainer": "Oscar R.C. <https://oscrrc.me>",
"synopsis": "A web controller for the Korg NTS-1",
"description": "A handy web controller for the Korg NTS-1 with memory banks and sequencer. Unleash your NTS-1 true power.",
"category": "Audio",
"icon": "static/media/icons/icon512.png"
}
},
"dependencies": {
"intro.js-react": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-scripts": "5.0.1",
"web-vitals": "^4.2.3",
"webmidi": "^3.1.11",
"workbox-background-sync": "^7.1.0",
"workbox-broadcast-update": "^7.1.0",
"workbox-cacheable-response": "^7.1.0",
"workbox-core": "^7.1.0",
"workbox-expiration": "^7.1.0",
"workbox-google-analytics": "^7.1.0",
"workbox-navigation-preload": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-range-requests": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-streams": "^7.1.0"
},
"devDependencies": {
"@bubblewrap/cli": "^1.22.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"daisyui": "^4.12.10",
"electron": "^32.0.1",
"electron-builder": "^24.13.3",
"electronmon": "^2.0.3",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-pwa": "^0.20.1",
"wait-on": "^8.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"last 1 electron version"
],
"development": [
"last 1 electron version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}