forked from xenharmonic-devs/xen-midi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "xen-midi",
"author": "Lumi Pakkanen",
"version": "0.2.0",
"description": "Free-pitch polyphonic MIDI I/O based on webmidi.js using multi-channel pitch-bend",
"license": "MIT",
"main": "dist/src/index",
"repository": {
"type": "git",
"url": "git+https://github.com/xenharmonic-devs/xen-midi.git"
},
"bugs": {
"url": "https://github.com/xenharmonic-devs/xen-midi/issues"
},
"homepage": "https://github.com/xenharmonic-devs/xen-midi#readme",
"keywords": [
"Microtonal",
"Music",
"Xenharmonic",
"MIDI",
"Polyphonic"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/node": "^20.12.2",
"gts": "^5.3.0",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test": "vitest",
"doc": "typedoc src/index.ts . --name xen-midi"
},
"dependencies": {
"webmidi": "^3.1.8",
"xen-dev-utils": "^0.2.8"
}
}