-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "punkomatic",
"type": "module",
"exports": {
"node": "./dist/punkomatic.node.js",
"browser": "./dist/punkomatic.browser.js"
},
"version": "0.5.4",
"description": "a tool to parse and render Punk-O-Matic 2 song data",
"scripts": {
"build": "./scripts/build.sh",
"libav-build": "./scripts/libav-build.sh",
"gh-pages-build": "./scripts/gh-pages-build.sh",
"serve": "npx esbuild --serve=127.0.0.1:8080 --servedir=./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iliazeus/punkomatic-js.git"
},
"keywords": [
"punkomatic",
"punk-o-matic"
],
"author": "Ilia Pozdnyakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iliazeus/punkomatic-js/issues"
},
"homepage": "https://github.com/iliazeus/punkomatic-js#readme",
"devDependencies": {
"@types/node": "^20.11.30",
"@types/webaudioapi": "^0.0.27",
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"typescript": "^5.6.2"
},
"optionalDependencies": {
"ffmpeg-static": "^5.2.0",
"node-web-audio-api": "^0.21.3"
}
}