forked from choptop84/abyssbox-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 988 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
33
34
{
"name": "AbyssBox",
"version": "1.2.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",
"build-app": "bash ./compile_beepbox_app.sh"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/johnnesky/beepbox.git"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.19.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/jquery": "^3.5.5",
"@types/select2": "^4.0.53",
"alwan": "^2.0.2",
"imperative-html": "^0.1.0",
"select2": "^4.0.13"
}
}