-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 856 Bytes
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": "epsical",
"version": "1.0.0",
"description": "Sync your EPSI school schedule to Apple Calendar, Google Calendar, or any iCal-compatible app",
"type": "module",
"scripts": {
"scrape": "tsx src/index.ts scrape",
"serve": "tsx src/index.ts serve",
"start": "tsx src/index.ts serve",
"dev": "tsx watch src/index.ts serve"
},
"keywords": [
"epsi",
"ical",
"calendar",
"edt",
"wigor",
"schedule"
],
"author": "Maxime Mansiet",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@touch4it/ical-timezones": "^1.9.0",
"cheerio": "^1.2.0",
"dotenv": "^17.3.1",
"hono": "^4.12.9",
"ical-generator": "^10.1.0",
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}