-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "webuntis-google-calendar",
"description": "This project syncs Webbuntis calendars with the public Google Calendar. This allows users to subscribe to the calendar and access the calendar directly from any calendar application they are using.",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"type": "commonjs",
"author": {
"name": "Sulaiman Sulaiman",
"email": "[email protected]",
"url": "https://www.su14iman.com/"
},
"scripts": {
"start": "ts-node src/index.ts",
"oauth": "ts-node src/oauth.ts",
"token": "ts-node src/token.ts",
"dev": "ts-node-dev src/index.ts",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@types/node": "^16.18.39",
"ts-node-dev": "^2.0.0",
"typescript": "4.5.2"
},
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"dotenv": "^16.3.1",
"webuntis": "^2.0.3",
"ics": "^3.4.0",
"googleapis": "^126.0.1",
"tsdav": "^2.0.5"
}
}