Add package information, yarn, index stub, README & .gitignore

This commit is contained in:
2023-08-11 02:17:19 -05:00
commit 9c19fafbda
5 changed files with 183 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "schedule-extract",
"version": "0.0.1",
"main": "index.ts",
"license": "MIT",
"description": "Extract schedule information into ICS files from Student Registration system",
"repository": "https://github.com/Xevion/schedule-extract",
"author": "Xevion",
"private": true,
"type": "module",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"ics": "^3.2.0"
}
}