-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
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
{
"name": "@perry-rylance/midi",
"author": "Perry Rylance",
"license": "CC-BY-3.0",
"description": "TypeScript library for parsing, building, serializing and debugging MIDI.",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "tsc",
"dev": "npx tsc --watch",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"glob": "^10.3.3",
"jest": "^29.6.1",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerryRylance/midi.git"
},
"keywords": [
"MIDI",
"TypeScript",
"Parser",
"Debugger",
"Linter",
"Builder"
],
"bugs": {
"url": "https://github.com/PerryRylance/midi/issues"
},
"homepage": "https://github.com/PerryRylance/midi#readme"
}