forked from ultraabox/ultrabox_typescript
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.91 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
{
"name": "slarmoosbox",
"version": "1.4.11",
"description": "Slarmoo's Box is a mod of Ultrabox that aims to advance Beepbox's capabilities.",
"author": "Slarmoo",
"contributors": [
"Slarmoo",
"Main",
"Neputendo",
"LeoV",
"Mid",
"Choptop84"
],
"license": "MIT",
"homepage": "https://slarmoo.github.io/slarmoosbox/website/",
"type": "module",
"main": "main.js",
"icon": "path.join(__dirname, 'icon.ico')",
"scripts": {
"build": "npm run build-synth && npm run build-player && npm run build-editor",
"build-synth": "bash ./scripts/compile_beepbox_synth.sh",
"build-player": "bash ./scripts/compile_beepbox_player.sh",
"build-editor": "bash ./scripts/compile_beepbox_editor.sh",
"build-offline": "bash ./scripts/compile_beepbox_offline.sh",
"build-offline-html": "bash ./scripts/compile_beepbox_offline_html.sh",
"deploy-files": "bash ./scripts/deploy_files.sh",
"start": "electron ./to_deploy",
"package": "electron-packager ./to_deploy --platform=darwin,linux,win32 --arch=ia32,x64 --asar --overwrite && npm run build-offline-html",
"package-host": "electron-packager ./to_deploy slarmoosbox --asar --overwrite && npm run build-offline-html",
"live_editor": "bash ./scripts/live_editor.sh",
"live_editor_typeless": "bash ./scripts/live_editor_typeless.sh",
"let": "npm run live_editor_typeless"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slarmoo/slarmoosbox.git"
},
"devDependencies": {
"@electron/packager": "^18.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"electron": "^33.0.0",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.19.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/jquery": "^3.5.30",
"@types/select2": "^4.0.63",
"electron": "^29.1.1",
"electron-packager": "^17.1.2",
"esbuild": "^0.25.5",
"express": "^4.21.2",
"imperative-html": "^0.1.1",
"js-xxhash": "^4.0.0",
"select2": "^4.0.13"
}
}