-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.14 KB
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
{
"name": "parse-comcigan",
"version": "1.1.2",
"description": "컴시간 알리미에서 시간표를 가져오는 라이브러리입니다.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Pro203S",
"license": "MIT",
"type": "module",
"scripts": {
"pack": "npm run clean && npm run build",
"build": "tsc",
"clean": "tsc --build --clean",
"dev": "nodemon --exec ts-node src/index.ts",
"watch": "tsc --watch",
"test": "npm run pack && node \"test.js\""
},
"exports": {
"types": "./src/types/index.d.ts",
"default": "./dist/index.js"
},
"devDependencies": {
"@types/node": "^22.19.20",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.17.0",
"dayjs": "^1.11.21",
"iconv-lite": "^0.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pro203S/parse-comcigan.git"
},
"keywords": [
"school",
"timetable",
"comcigan"
],
"homepage": "https://github.com/Pro203S/parse-comcigan.git",
"bugs": {
"url": "https://github.com/Pro203S/parse-comcigan/issues"
}
}