-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "mucom88-js",
"version": "0.4.1",
"description": "MUCOM88 module for JavaScript",
"main": "dist/index.js",
"type": "module",
"files": [
"README.md",
"package.json",
"LICENSE.md",
"dist",
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build:all",
"build:all": "npm run build:emscripten && npm run build",
"build:emscripten": "mkdirp build && cd build && emcmake cmake .. && cmake --build . && cpy mucom88.js ../lib/",
"build": "tsc"
},
"keywords": [
"MUCOM88",
"YM2203",
"YM2608",
"FM",
"Chiptune"
],
"author": "Mitsutaka Okazaki",
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/emscripten": "^1.39.6",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"cpy-cli": "^4.2.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"mkdirp": "^2.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"typedoc": "^0.23.27",
"typescript": "^4.9.0"
},
"repository": {
"typo": "git",
"url": "https://github.com/digital-sound-antiques/mucom88-js.git"
},
"engines": {
"node": ">=14.18.2"
},
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"wavefile": "^11.0.0"
}
}