forked from jummbus/jummbox
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "UltraBox",
"version": "2.2.13",
"description": "UltraBox is a mod of BeepBox that aims to combine every other beepmod into one.",
"author": "Main",
"contributors": [
"Neputendo",
"LeoV",
"Mid",
"choptop84",
"Slarmoo"
],
"license": "MIT",
"homepage": "https://ultraabox.github.io",
"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 ./compile_beepbox_synth.sh",
"build-player": "bash ./compile_beepbox_player.sh",
"build-editor": "bash ./compile_beepbox_editor.sh",
"build-offline": "bash ./compile_beepbox_offline.sh",
"build-offline-html": "bash ./compile_beepbox_offline_html.sh",
"deploy-files": "bash ./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 UltraBox --asar --overwrite && npm run build-offline-html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ultraabox/ultrabox_typescript.git"
},
"devDependencies": {
"@electron/packager": "^18.3.5",
"@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.5",
"@types/select2": "^4.0.53",
"imperative-html": "^0.1.0",
"select2": "^4.0.13"
}
}