-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "xuexitong-ppt-downloader",
"version": "0.3.0",
"description": "适用于学习通网页版的 PPT 下载器",
"scripts": {
"build": "tsup --config tsup.tampermonkey.config.ts && tsup --config tsup.extension.config.ts",
"build:tamper": "tsup --config tsup.tampermonkey.config.ts",
"build:ext": "tsup --config tsup.extension.config.ts",
"lint": "eslint src",
"format": "prettier --write src"
},
"keywords": [
"Downloader",
"学习通"
],
"author": "hazuki-keatsu",
"license": "MIT",
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/node": "^25.0.3",
"@types/tampermonkey": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"archiver": "^7.0.1",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"tampermonkey": {
"namespace": "https://keatsu.top/",
"match": [
"https://*.chaoxing.com/mycourse/studentstudy*",
"https://*.chaoxing.com/mooc-ans/mycourse/studentstudy*",
"https://*.chaoxing.com/mooc2-ans/mycourse/stu*"
],
"grant": [
"GM_getValue",
"GM_setValue",
"GM_xmlhttpRequest"
],
"runAt": "document-end",
"updateURL": "https://raw.githubusercontent.com/hazuki-keatsu/xuexitong-ppt-downloader/main/dist/tampermonkey/xuexitong-ppt-downloader.user.js",
"downloadURL": "https://raw.githubusercontent.com/hazuki-keatsu/xuexitong-ppt-downloader/main/dist/tampermonkey/xuexitong-ppt-downloader.user.js",
"homepageURL": "https://github.com/hazuki-keatsu/xuexitong-ppt-downloader"
},
"extension": {
"icon": "icon.png"
},
"dependencies": {
"i18next": "^25.7.4",
"i18next-browser-languagedetector": "^8.2.0",
"jspdf": "^3.0.4",
"react-i18next": "^16.5.3"
}
}