-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "midi-cmd",
"version": "1.1.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src",
"package": "npx caxa --input . --output dist/midi-cmd.exe --exclude dist -- {{caxa}}/node_modules/.bin/node.exe {{caxa}}/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/David-Vandensteen/midi-cmd.git"
},
"author": "David Vandensteen <dvandensteen@gmail.com>",
"license": "MIT",
"imports": {
"#src/*": "./src/*.js"
},
"bugs": {
"url": "https://github.com/David-Vandensteen/midi-cmd/issues"
},
"homepage": "https://github.com/David-Vandensteen/midi-cmd#readme",
"dependencies": {
"app-root-path": "^3.1.0",
"arg": "^5.0.2",
"easymidi": "^3.1.0",
"fs-extra": "^10.0.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1"
}
}