-
Notifications
You must be signed in to change notification settings - Fork 179
/
package.json
31 lines (31 loc) · 1008 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
{
"name": "beepbox",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build": "npm run clean && npm run build-synth && npm run build-player && npm run build-editor",
"build-synth": "bash ./scripts/compile_synth.sh",
"build-player": "bash ./scripts/compile_player.sh",
"build-editor": "bash ./scripts/compile_editor.sh",
"clean": "bash ./scripts/clean.sh",
"live-editor": "bash ./scripts/live_editor.sh",
"live-editor-fast-typeless": "bash ./scripts/live_editor_fast_typeless.sh",
"deploy-website": "bash ./scripts/deploy.sh",
"publish": "bash ./scripts/publish_on_npm.sh",
"prepublishOnly": "echo \"Use 'npm run publish' instead!\" && exit 1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"concurrently": "^8.2.2",
"esbuild": "^0.23.0",
"five-server": "^0.3.3",
"rollup": "^2.79.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"terser": "^5.19.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"imperative-html": "^0.1.2"
}
}