forked from aagentah/nw_wrld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
155 lines (155 loc) · 5.4 KB
/
package.json
File metadata and controls
155 lines (155 loc) · 5.4 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "nw-wrld",
"productName": "nw_wrld",
"version": "0.3.0-beta",
"description": "nw_wrld is an event-driven sequencer for triggering visuals using web technologies. It enables users to scale up audiovisual compositions for prototyping, demos, exhibitions, and live performances. Users code their own visual modules, then orchestrate them using the project's native UI composer.",
"main": "index.js",
"scripts": {
"start": "npm run build:runtime && concurrently -k \"npm run serve\" \"wait-on http://localhost:9000 && electron src\"",
"serve": "webpack serve --mode development",
"build": "webpack --mode production",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:core": "tsc -p tsconfig.core.json --noEmit",
"typecheck:all": "npm run typecheck && npm run typecheck:core",
"build:runtime": "tsc -p tsconfig.runtime.json",
"test:unit": "npm run build:runtime && node --test test",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true});require('fs').rmSync('release',{recursive:true,force:true});\"",
"build:renderer": "npm run clean && npm run build:runtime && webpack --mode production",
"pack:mac": "npm run build:renderer && electron-builder --mac --dir --universal",
"dist:mac": "npm run build:renderer && electron-builder --mac --universal --publish never",
"pack:mac:split": "npm run build:renderer && electron-builder --mac --dir --arm64 && electron-builder --mac --dir --x64",
"dist:mac:split": "npm run build:renderer && electron-builder --mac --arm64 --publish never && electron-builder --mac --x64 --publish never",
"pack:mac:arm64": "npm run build:renderer && electron-builder --mac --dir --arm64",
"pack:mac:x64": "npm run build:renderer && electron-builder --mac --dir --x64",
"dist:mac:arm64": "npm run build:renderer && electron-builder --mac --arm64 --publish never",
"dist:mac:x64": "npm run build:renderer && electron-builder --mac --x64 --publish never",
"pack:win": "npm run build:renderer && electron-builder --win --dir",
"dist:win": "npm run build:renderer && electron-builder --win --publish never"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"midi",
"visualization",
"ableton",
"vj",
"audiovisual",
"electron",
"live-performance",
"music-visualizer",
"three-js",
"p5-js"
],
"author": "https://github.com/aagentah",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/aagentah/nw_wrld.git"
},
"bugs": {
"url": "https://github.com/aagentah/nw_wrld/issues"
},
"homepage": "https://github.com/aagentah/nw_wrld#readme",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@tonejs/midi": "^2.0.28",
"@tweenjs/tween.js": "^23.1.3",
"d3": "^7.9.0",
"immer": "^10.1.1",
"jotai": "^2.10.0",
"lodash": "^4.17.21",
"noisejs": "^2.1.0",
"osc": "^2.4.4",
"p5": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"three": "^0.159.0",
"tone": "^15.1.22",
"webmidi": "^3.1.7"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.28.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"dmg-builder": "25.1.8",
"electron": "^39.2.7",
"electron-builder": "^25.1.8",
"electron-builder-squirrel-windows": "25.1.8",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "^3.0.0",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.3",
"typescript": "^5.9.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2"
},
"build": {
"appId": "tech.aagentah.nw_wrld",
"productName": "nw_wrld",
"asar": true,
"npmRebuild": false,
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"index.js",
"package.json",
"dist/**",
"src/index.js",
"src/preload.js",
"src/sandboxPreload.js",
"src/main/**",
"src/projector/helpers/**",
"src/projector/views/**",
"src/dashboard/views/**",
"src/dashboard/assets/audio/**",
"src/shared/**",
"src/assets/**",
"!**/node_modules/**/prebuilds/android-*/**",
"!**/node_modules/**/prebuilds/linux-*/**",
"!**/node_modules/**/prebuilds/win32-*/**"
],
"mac": {
"target": [
"dmg"
],
"icon": "build/logo.icns",
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.inherit.plist",
"notarize": true
},
"win": {
"target": [
"portable"
],
"icon": "build/logo.ico"
}
}
}