-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.38 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
{
"name": "bice-box",
"main": "electron/main.js",
"homepage": ".",
"version": "0.1.35",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@use-gesture/react": "^10.3.1",
"axios": "^1.6.2",
"node-wifi": "^2.0.16",
"openai": "^4.47.1",
"osc": "^2.4.5",
"p5": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"react-scripts": "5.0.1",
"react-simple-keyboard": "^3.8.27",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "concurrently \"npm run dev:react\" \"wait-on -v http://127.0.0.1:3000 && npm run dev:electron\"",
"dev:react": "cross-env BROWSER=none react-scripts start",
"dev:electron": "cross-env NODE_ENV=development electron .",
"build:react": "react-scripts build",
"build:react:pi": "NODE_OPTIONS=--max_old_space_size=512 npm run build:react",
"start:electron": "cross-env electron .",
"eject": "react-scripts eject",
"clean": "rm -rf out build dist",
"build:electron": "source .venv/bin/activate && react-scripts build && electron-builder build",
"build:electron:pi": "NODE_OPTIONS=--max_old_space_size=512 react-scripts build && electron-builder build --linux --arm64",
"release:publish": "react-scripts build && electron-builder build --linux --arm64 --publish always",
"release:publish:draft": "react-scripts build && electron-builder build --linux --arm64 --publish onTagOrDraft"
},
"build": {
"appId": "com.drewskillman.bicebox",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"productName": "Bice-Box",
"files": [
"build/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist"
},
"extraMetadata": {
"main": "electron/main.js"
},
"linux": {
"target": [
"zip"
],
"category": "Audio",
"defaultArch": "arm64",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"icon": "assets/icon.png",
"asarUnpack": [
"build/**/*"
]
},
"electronDownload": {
"mirror": "https://github.com/electron/electron/releases/download/"
},
"mac": {
"target": [
"dmg",
"zip"
],
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "This app requires microphone access for audio input."
},
"notarize": {
"teamId": "WY9799W7YW"
}
},
"publish": {
"provider": "github",
"owner": "dskill",
"repo": "bice-box",
"releaseType": "release"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"electron-reloader": "^1.2.3",
"wait-on": "^8.0.0"
},
"description": "Bice-Box - An Audio Visual Effects Box",
"author": "Drew Skillman <[email protected]>"
}