forked from samsonmking/epaper.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "epaperjs",
"version": "1.6.0",
"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"
},
"contributors": [
{
"name": "Elad Shaham",
"url": "https://github.com/eshaham"
}
],
"repository": {
"type": "git",
"url": "https://github.com/samsonmking/epaper.js"
},
"license": "MIT",
"devDependencies": {
"node-gyp": "^7.1.2",
"prettier": "2.1.2"
},
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"express": "^4.17.1",
"node-addon-api": "^3.2.1",
"png.js": "^0.2.1",
"puppeteer-core": "^4.0.1",
"sharp": "^0.26.3",
"ws": "^7.5.5"
}
}