forked from samsonmking/epaper.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 977 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
{
"name": "epaperjs",
"version": "1.3.4",
"description": "Simple e-Paper display on a Raspberry Pi using Javascript and HTML",
"main": "index.js",
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"format:write": "prettier --write .",
"format:check": "prettier --check ."
},
"author": {
"name": "Samson King",
"email": "samson@samsonmking.com",
"url": "https://github.com/samsonmking"
},
"repository": {
"type": "git",
"url": "https://github.com/samsonmking/epaper.js"
},
"license": "MIT",
"devDependencies": {
"node-gyp": "^7.0.0",
"prettier": "2.1.2"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"express": "^4.17.1",
"node-addon-api": "^3.0.0",
"png.js": "^0.2.1",
"puppeteer-core": "^4.0.0",
"sharp": "^0.26.3",
"ws": "^7.3.1"
}
}