forked from samsonmking/epaper.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
56
57
{
"private": true,
"description": "Simple e-Paper display on a Raspberry Pi using Javascript and HTML",
"scripts": {
"preinstall": "npx only-allow pnpm",
"clean": "tsc --build --clean",
"build": "tsc --build",
"build:clean": "pnpm clean && pnpm build",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"changeset:add": "changeset",
"ci:publish": "changeset publish",
"ci:version": "changeset version"
},
"author": {
"name": "Samson King",
"email": "[email protected]",
"url": "https://github.com/samsonmking"
},
"contributors": [
{
"name": "Elad Shaham",
"url": "https://github.com/eshaham"
},
{
"name": "Sven Schoeni",
"url": "https://github.com/schoes"
},
{
"name": "Jack Cannon",
"url": "https://github.com/jackcannon"
},
{
"name": "Patrick D Miller",
"url": "https://github.com/patrickdmiller"
},
{
"name": "Remi Shergold",
"url": "https://github.com/RShergold"
},
{
"name": "Philipp Wegener",
"url": "https://github.com/webphax"
}
],
"repository": {
"type": "git",
"url": "https://github.com/samsonmking/epaper.js"
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.19.0",
"@types/node": "^17.0.0",
"prettier": "2.5.1",
"typescript": "^4.5.4"
}
}