-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 872 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
{
"name": "canvas-cast",
"author": "Owen McAteer",
"version": "1.0.0",
"description": "Cast any <canvas> element to an LED Matrix over WebSockets with an Arduino/ESP8266.",
"main": "src/App.js",
"scripts": {
"start": "parcel ./src/index.html",
"build": "parcel build ./src/App.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/owenmcateer/canvas-cast.git"
},
"keywords": [
"Canvas",
"Arduino",
"LED Matrix",
"RGB LED",
"JavaScript",
"cast",
"stream"
],
"license": "gpl-3.0",
"devDependencies": {
"@parcel/transformer-sass": "^2.0.0-beta.2",
"parcel": "^2.0.0-beta.2"
},
"bugs": {
"url": "https://github.com/owenmcateer/canvas-cast/issues"
},
"homepage": "https://github.com/owenmcateer/canvas-cast#readme"
}