-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 KB
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
48
49
50
51
52
53
{
"version": "0.2.4",
"name": "waveshare-epaper",
"description": "A modular Node.js driver for Waveshare E-Paper displays that supports multiple display models with different resolutions and color modes",
"main": "index.js",
"scripts": {
"test": "node example.js",
"example": "node example.js",
"example-enhanced": "node examples-enhanced.js",
"prepublishOnly": "echo 'Ready to publish'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anders94/waveshare-epaper.git"
},
"bugs": {
"url": "https://github.com/anders94/waveshare-epaper/issues"
},
"homepage": "https://github.com/anders94/waveshare-epaper#readme",
"dependencies": {
"canvas": "^3.2.0",
"pngjs": "^7.0.0",
"spi-device": "^3.1.2"
},
"keywords": [
"waveshare",
"e-paper",
"e-ink",
"epd",
"spi",
"display",
"raspberry-pi",
"monochrome",
"grayscale",
"color",
"7-color",
"3-color"
],
"author": "Anders Brownworth <anders-git@evantide.com>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.js",
"EPDBase.js",
"displays/",
"example.js",
"examples-enhanced.js",
"README.md",
"LICENSE"
]
}