-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "DuinoDCX",
"description": "Standalone WIFI remote controller for the Behringer Ultradrive Pro (DCX2496)",
"version": "0.0.39",
"author": "Lasse Lukkari <[email protected]>",
"contributors": [
"Ilkka Huhtakallio"
],
"repository": "github:lasselukkari/DuinoDCX",
"license": "MIT",
"devDependencies": {
"awot-scripts": "0.0.38"
},
"dependencies": {
"dcx-ui": "0.0.11"
},
"scripts": {
"build": "awot-static",
"flash": "awot-command-line",
"upload": "awot-static && awot-command-line"
},
"awot-static": {
"sources": "./node_modules/dcx-ui/dist",
"indexFile": "index.html",
"sketchDir": "./DuinoDCX",
"exclude": [
"*.map",
"service-worker.js"
]
},
"awot-command-line": {
"sketch": "DuinoDCX/DuinoDCX.ino",
"idePath": "/Applications/Arduino.app/Contents/MacOS/arduino",
"port": "/dev/cu.Repleo-PL2303-00002014",
"board": {
"package": "esp32",
"arch": "esp32",
"board": "esp32"
},
"action": "upload"
},
"renovate": {
"extends": [
"config:base"
]
}
}