-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "@usecoursekit/class-fetcher",
"version": "0.3.14",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"description": "Retrieve university class schedules and live enrollment counts with ease",
"scripts": {
"build": "tsup",
"copy-files": "cp -R ./src/umich/soc ./dist/",
"release": "bumpp --commit --push --tag && npm publish",
"prepublishOnly": "bun run build && bun run copy-files",
"test": "vitest",
"lint": "ts-standard"
},
"files": [
"dist"
],
"license": "MIT",
"homepage": "https://github.com/UseCourseKit/class-fetcher#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/UseCourseKit/class-fetcher.git/"
},
"bugs": "https://github.com/UseCourseKit/class-fetcher/issues",
"author": "Michael Peng <michael@mcmoo.org>",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"bumpp": "^9.4.0",
"ts-standard": "^12.0.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"dependencies": {
"@smikhalevski/trie": "^2.2.0",
"@types/better-sqlite3": "^7.6.9",
"@types/papaparse": "^5.3.14",
"better-sqlite3": "^9.4.3",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"minisearch": "^6.3.0"
},
"engines": {
"node": ">=21.2.0"
}
}