-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "html-midi-player",
"description": "MIDI file player and visualizer web components",
"version": "1.5.0",
"author": "Ondřej Cífka",
"license": "BSD-2-Clause",
"homepage": "https://github.com/cifkao/html-midi-player#readme",
"repository": {
"type": "git",
"url": "https://github.com/cifkao/html-midi-player.git"
},
"bugs": {
"url": "https://github.com/cifkao/html-midi-player/issues"
},
"keywords": [
"midi",
"midi-file",
"player",
"music",
"html",
"soundfont",
"web-components",
"webcomponents"
],
"type": "module",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"jsdelivr": "dist/midi-player.js",
"unpkg": "dist/midi-player.min.js",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"index.html"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c && tsc -d --emitDeclarationOnly --declarationDir dist/esm",
"prestart": "rm -rf dist",
"start": "rollup -c --watch --plugin dev",
"build:doc": "wca src/index.ts --outFiles doc/{tagname}.md"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-umd": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-typescript": "^5.0.2",
"focus-visible": "^5.1.0",
"rollup": "^2.26.4",
"rollup-plugin-dev": "^1.1.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.0",
"sass": "^1.26.10",
"tslib": "^2.0.1",
"typescript": "^3.9.7",
"web-component-analyzer": "^1.1.6"
},
"dependencies": {
"@magenta/music": "^1.22.1"
}
}