-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.1 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
{
"type": "module",
"name": "hydra-midi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "0.4.3",
"license": "MIT",
"packageManager": "pnpm@8.12.1",
"author": {
"name": "Arno Schlipf",
"url": "https://a--s.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arnoson/hydra-midi.git"
},
"bugs": "https://github.com/arnoson/hydra-midi/issues",
"scripts": {
"build": "tsup",
"server": "python3 -m http.server --bind 127.0.0.1 3000 --directory dist",
"dev": "concurrently -P \"npm:server\" \"node ./scripts/dev.js {@}\" \"tsup --watch\" -c yellow,blue,green -n server,tunnel,tsup",
"dev:chrome": "pnpm dev -- --browser chrome",
"release": "bumpp",
"test:types": "tsc --noEmit",
"format:fix": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/webmidi": "^2.0.10",
"bumpp": "^9.2.1",
"concurrently": "^8.2.2",
"open": "^10.0.0",
"prettier": "^3.1.1",
"terser": "^5.26.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"untun": "^0.1.3"
}
}