-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 946 Bytes
/
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
{
"name": "sorrygle",
"version": "1.3.1-e",
"description": "Text-based MIDI-writing language and its compiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/JJoriping/Sorrygle.git",
"homepage": "https://sorry.daldal.so/sorrygle",
"author": "JJoriping <op@jjo.kr>",
"license": "MIT",
"bin": {
"sorrygle": "dist/cli.js"
},
"scripts": {
"nearley": "nearleyc -o src/grammar.ts src/grammar.ne",
"build": "tsc",
"watch": "tsc -w"
},
"bugs": {
"url": "https://github.com/JJoriping/Sorrygle/issues"
},
"keywords": [
"music",
"midi",
"generator",
"mml"
],
"files": [
"dist/"
],
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/nearley": "^2.11.2",
"@types/node": "^16.10.2",
"tsc": "^2.0.3",
"typescript": "^4.4.3"
},
"dependencies": {
"midi-writer-js": "=2.0.1",
"nearley": "^2.20.1"
}
}