forked from hadifikri/oled-rpi-i2c-bus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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
48
49
50
51
52
53
54
55
{
"name": "oled-rpi-i2c-bus-async",
"version": "1.0.3",
"description": "Asynchronous NodeJS module for controlling oled devices on the Raspbery Pi (including the SSD1306 and SH1106 OLED screens)",
"type": "module",
"main": "oled.mjs",
"devDependencies": {
"oled-font-pack": "^1.0.1",
"png-to-lcd": "^1.1.0",
"pngparse": "^2.0.1",
"temporal": "^0.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/grevelle/oled-rpi-i2c-bus-async.git"
},
"keywords": [
"Raspberry Pi",
"Pi",
"NodeJS",
"async",
"asynchronous",
"oled",
"SSD1306",
"SH1106",
"128x64",
"128x32",
"96x16",
"I2C",
"SPI",
"Monochrome",
"Display",
"Screen",
"JavaScript",
"ES6",
"Non-blocking",
"PLED",
"Driver",
"Hardware",
"Embedded"
],
"author": "Judd Flamm, Suz Hinton, Bogdan Symchych, Abdul Hadi Fikri, Greg Revelle",
"license": "MIT",
"bugs": {
"url": "https://github.com/grevelle/oled-rpi-i2c-bus-async/issues"
},
"homepage": "https://github.com/grevelle/oled-rpi-i2c-bus-async",
"dependencies": {
"i2c-bus": "^5.2.3",
"pngjs": "^7.0.0"
}
}