forked from hellochar/hellochar.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.62 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.62 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
116
117
118
119
120
121
122
123
124
{
"name": "waveconductor",
"version": "4.2.0",
"author": {
"name": "Madison Rickert",
"email": "3495636+madisonrickert@users.noreply.github.com",
"url": "https://madisonrickert.com"
},
"contributors": [
{
"name": "Xiaohan Zhang"
},
{
"name": "Rich Trapani",
"url": "https://lovetech.org"
}
],
"description": "Interactive art gallery (Three.js/WebGL, Web Audio, Leap Motion)",
"packageManager": "npm@10.9.2",
"private": true,
"main": "dist-electron/main.js",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"leap-websocket": "npx tsx scripts/leap-websocket.ts",
"start": "vite --port 5173",
"build": "vite build",
"preview": "vite preview --port 4173",
"electron:dev": "cross-env ELECTRON=1 vite --port 5173",
"electron:build": "cross-env ELECTRON=1 vite build",
"electron:package": "electron-builder",
"electron:dist": "npm run electron:build && npx electron-builder",
"release:tag": "git tag v$(node -p \"require('./package.json').version\") && git push origin v$(node -p \"require('./package.json').version\")",
"test": "NODE_OPTIONS='--no-webstorage' vitest",
"test:run": "NODE_OPTIONS='--no-webstorage' vitest run",
"test:coverage": "NODE_OPTIONS='--no-webstorage' vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"classnames": "^2.5.1",
"cross-env": "^10.1.0",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.1.0-canary-80b1cab3-20260331",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"leapjs": "1.1.1",
"normalize.css": "^8.0.1",
"radash": "^12.1.1",
"react": "^19.2.4",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.4",
"react-hotkeys-hook": "^5.2.4",
"react-icons": "^5.6.0",
"react-router": "^7.14.0",
"sass": "^1.99.0",
"three": "^0.183.2",
"three-stdlib": "^2.36.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.3",
"vite-plugin-electron": "^1.0.0-beta.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-glsl": "^1.5.6",
"vite-plugin-node-polyfills": "^0.26.0",
"vitest": "^4.1.2"
},
"build": {
"appId": "com.waveconductor.app",
"productName": "WaveConductor",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"target": {
"target": "dmg",
"arch": "universal"
},
"category": "public.app-category.entertainment",
"x64ArchFiles": "Contents/Resources/bin/**",
"extraResources": [
{
"from": "bin/Ultraleap-Tracking-WS-arm64",
"to": "bin/Ultraleap-Tracking-WS-arm64"
},
{
"from": "bin/Ultraleap-Tracking-WS-x86",
"to": "bin/Ultraleap-Tracking-WS-x86"
}
]
},
"win": {
"target": "portable",
"extraResources": [
{
"from": "bin/Ultraleap-Tracking-WS.exe",
"to": "bin/Ultraleap-Tracking-WS.exe"
},
{
"from": "bin",
"to": "bin",
"filter": [
"*.dll"
]
}
]
}
}
}