-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 932 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
37
38
{
"name": "icalinkfetcher",
"version": "1.0.0",
"description": "Fetch my ical and show it in an my ePaper display",
"main": "dist/src/index.js",
"scripts": {
"run": "node dist/src/index.js",
"test": "node dist/test/index.js",
"build": "node_modules/typescript/bin/tsc",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moshegottlieb/icalinkfetcher.git"
},
"keywords": [
"epaper",
"ink",
"mono"
],
"author": "Moshe Gottlieb",
"license": "MIT",
"bugs": {
"url": "https://github.com/moshegottlieb/icalinkfetcher/issues"
},
"homepage": "https://github.com/moshegottlieb/icalinkfetcher#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"dependencies": {
"assert": "^2.1.0",
"canvas": "^2.11.2",
"ical.js": "^2.1.0",
"tsdav": "^2.1.3",
"tslog": "^4.9.3"
}
}