-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.04 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
{
"name": "epaper-calendar",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"bin": {
"render-calendar": "./bin/render-calendar-to-e-paper.js"
},
"scripts": {
"build": "npm run build:cli",
"build:watch": "npm run build:cli:watch",
"build:cli": "esbuild --bundle --target=node16 --format=esm --external:pureimage --external:pino --external:jimp --external:linefold --outfile=lib/cli.js --platform=node --sourcemap src/cli.ts ",
"build:cli:watch": "esbuild --bundle --target=node16 --format=esm --external:pureimage --external:pino --external:jimp --external:linefold --outfile=lib/cli.js --platform=node --sourcemap src/cli.ts --watch",
"dev": "node bin/render-calendar-to-e-paper.js --config secret-test-options.json",
"dev:watch": "nodemon -w lib -w secret-test-options.json --exec \"node bin/render-calendar-to-e-paper.js --config secret-test-options.json\"",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node ~/Development/aeppic/services/service/bin/pack.js",
"simple-deploy": "ssh [email protected] 'rm -rf ~/calendar-simple-deploy && mkdir ~/calendar-simple-deploy' && scp -r bin lib [email protected]:~/calendar-simple-deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthiasg/gcal.git"
},
"files": [
"bin",
"lib",
"data"
],
"author": "Matthias Goetzke",
"license": "ISC",
"bugs": {
"url": "https://github.com/matthiasg/gcal/issues"
},
"homepage": "https://github.com/matthiasg/gcal#readme",
"dependencies": {
"@node-cli-toolkit/oauth-cli": "^1.0.2",
"fetch": "^1.1.0",
"fontkit": "^1.8.1",
"jimp": "^0.16.1",
"linefold": "^1.0.15",
"monthly": "^0.6.7",
"node-fetch": "^3.1.0",
"nodemon": "^2.0.15",
"pino": "^7.5.1",
"pino-pretty": "^7.2.0",
"platform-paths": "^1.2.2",
"pureimage": "^0.3.8",
"qrcode-terminal": "^0.12.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"@types/node": "^17.0.0",
"esbuild": "^0.14.2",
"luxon": "^2.2.0"
}
}