-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 3.23 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "musicxml-player",
"version": "0.19.3",
"description": "A simple JavaScript component that loads and plays MusicXML files in the browser using Web Audio and Web MIDI.",
"main": "dist/musicxml-player.esm.js",
"type": "module",
"types": "dist/types/index.d.ts",
"module": "dist/musicxml-player.esm.js",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@esm-bundle/chai-as-promised": "^7.1.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/eslint": "^8.4.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.12.11",
"@types/sinon": "^17.0.3",
"@types/verovio": "^3.13.0",
"@types/webmidi": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@web/test-runner": "^0.18.2",
"@web/test-runner-puppeteer": "^0.16.0",
"assert": "^2.0.0",
"chai": "^5.1.1",
"chai-as-promised": "^7.1.1",
"concurrently": "^8.0.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"json-midi-message-encoder": "^4.1.18",
"local-web-server": "^5.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"rollup": "^4.17.2",
"rollup-plugin-external-globals": "^0.10.0",
"rollup-plugin-import-css": "^3.2.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"sinon": "^18.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"scripts": {
"test": "web-test-runner src/**/*.spec.js --node-resolve",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"build": "rollup --config ./rollup.config.mjs",
"build:lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"develop": "rollup --watch --config ./rollup.config.mjs",
"demo": "concurrently --kill-others \"PORT=3000 musicxml-midi\" \"npm run demo:develop\"",
"demo:develop": "ws -d demo --rewrite '/mma/(.*) -> http://localhost:3000/$1' -p ${PORT:-8080}",
"demo:server": "ws -d demo -p ${PORT:-8082} -z --log.format combined",
"prepublishOnly": "npm run build:lint && npm run test && npm run build",
"postinstall": "./apply-patches.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infojunkie/musicxml-player.git"
},
"author": "Karim Ratib <[email protected]> (https://github.com/infojunkie)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/infojunkie/musicxml-player/issues"
},
"homepage": "https://github.com/infojunkie/musicxml-player#readme",
"dependencies": {
"json-midi-encoder": "^5.1.32",
"midi-json-parser": "^8.1.14",
"midi-player": "github:infojunkie/midi-player",
"opensheetmusicdisplay": "^1.7.1",
"standardized-audio-context": "^25.3.35",
"timing-object": "^3.1.61",
"timingsrc": "^1.4.5",
"unzipit": "^1.4.3",
"verovio": "^4.2.0",
"webaudiofont": "^3.0.4",
"worker-timers": "^8.0.0"
}
}