-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "vgm-conv",
"version": "0.14.1",
"description": "Chip-type and clock converter for VGM.",
"main": "dist/index.js",
"bin": {
"vgm-conv": "bin/cmd.js"
},
"files": [
"bin",
"README.md",
"LICENSE.md",
"package.json",
"dist"
],
"scripts": {
"prepare": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "tsc"
},
"author": "Mitsutaka Okazaki",
"license": "ISC",
"dependencies": {
"command-line-args": "^5.2.0",
"command-line-usage": "^7.0.1",
"vgm-parser": "^0.12.0-beta.0",
"ym-voice": "^0.3.2"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.4",
"@types/node": "^18.19.15",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/digital-sound-antiques/vgm-conv"
},
"keywords": [
"vgm",
"chiptune",
"psg",
"ym2151",
"ym2413",
"ym2612",
"ym2203",
"ym2608",
"ym3812",
"ym3526",
"y8950",
"ymf262",
"ay-3-8910"
],
"engines": {
"node": ">=18.0.0"
}
}