forked from rednetio/chord-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 925 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
{
"name": "chord-display",
"title": "Chord Display",
"version": "0.2.1",
"license": "MIT",
"description": "A free web application to show chords and notes being played with a MIDI keyboard",
"keywords": [
"music",
"chord",
"notes",
"display",
"midi",
"keyboard",
"OBS",
"streamlabs",
"overlay"
],
"author": "Rémi Jarasson (https://rednet.io)",
"repository": "github:rednetio/chord-display",
"homepage": "https://chord-display.rednet.io",
"main": "index.html",
"scripts": {
"start": "parcel index.html --open",
"clean": "rm -rf .cache && rm -rf ./dist",
"build": "yarn run clean && parcel build index.html --public-url \"./\""
},
"dependencies": {
"qs": "^6.9.1",
"rsvp": "4.8.5",
"tonal": "3.0.0-alpha2"
},
"devDependencies": {
"@babel/core": "7.8.4",
"parcel-bundler": "^1.12.4",
"posthtml-expressions": "^1.1.1"
}
}