forked from Mid-The-Modder/Midbox-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 916 Bytes
/
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
{
"name": "BeepBox",
"version": "4.1.0",
"description": "BeepBox is an online tool for sketching and sharing instrumental music.",
"author": "John Nesky",
"license": "MIT",
"homepage": "https://www.beepbox.co",
"type": "module",
"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"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/johnnesky/beepbox.git"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.32.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.3.8",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/jquery": "^3.5.5",
"@types/select2": "^4.0.53",
"imperative-html": "^0.1.0",
"select2": "^4.0.13"
}
}