-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
{
"name": "thu-learn-lib",
"version": "4.0.0",
"description": "a JavaScript library to provide a program-friendly interface to Web Learning (2018) of Tsinghua University",
"type": "module",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "lib/index.global.js",
"unpkg": "lib/index.global.js",
"jsdelivr": "lib/index.global.js",
"files": [
"lib"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "vite",
"dev:build": "vite build",
"format": "prettier --write \"{src,test,demo}/**/*.{ts,html,json}\" \"*.{ts,md,json}\"",
"lint": "eslint",
"test": "vitest run"
},
"keywords": [
"tsinghua",
"learn2018"
],
"author": "Harry Chen <[email protected]> (https://harrychen.xyz)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Harry-Chen/thu-learn-lib.git"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "22.10.1",
"@types/webextension-polyfill": "^0.12.1",
"domhandler": "^5.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.16.0",
"fake-parse5": "^0.0.1",
"prettier": "^3.4.1",
"terser": "^5.36.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1",
"vite-plugin-web-extension": "^4.3.1",
"vitest": "^2.1.6",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"cheerio": "^1.0.0",
"entities": "4.5.0",
"fetch-cookie": "^3.0.1",
"js-base64": "^3.7.7",
"node-fetch-cookie-native": "^0.0.2",
"node-fetch-native": "^1.6.4",
"tough-cookie": "^5.0.0"
},
"packageManager": "[email protected]"
}