karin-plugin-qgroup-file2openlist 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +171 -0
- package/config/config.json +20 -0
- package/lib/apps/example.js +41 -0
- package/lib/apps/groupFiles.js +12 -0
- package/lib/apps/groupSyncConfig.js +398 -0
- package/lib/apps/groupSyncScheduler.js +188 -0
- package/lib/apps/handler.js +24 -0
- package/lib/apps/render.js +89 -0
- package/lib/apps/sendMsg.js +128 -0
- package/lib/apps/task.js +19 -0
- package/lib/chunk-5WVKHIPK.js +38 -0
- package/lib/chunk-IZS467MR.js +47 -0
- package/lib/chunk-QVWWPGHK.js +1138 -0
- package/lib/dir.js +6 -0
- package/lib/index.js +7 -0
- package/lib/web.config.js +756 -0
- package/package.json +67 -0
- package/resources/image//345/220/257/347/250/213/345/256/243/345/217/221.png +0 -0
- package/resources/template/test.html +21 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "karin-plugin-qgroup-file2openlist",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"author": "429",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "karin plugin for QGroupFile backup",
|
|
7
|
+
"homepage": "https://github.com/XuF163/karin-plugin-qgroup-file2openlist",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/XuF163/karin-plugin-qgroup-file2openlist/issues"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/XuF163/karin-plugin-qgroup-file2openlist"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"app": "node lib/app.js",
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "cross-env EBV_FILE=\"development.env\" node --import tsx src/app.ts",
|
|
19
|
+
"pub": "npm publish --access public"
|
|
20
|
+
},
|
|
21
|
+
"main": "lib/index.js",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/express": "^5.0.1",
|
|
24
|
+
"@types/lodash": "^4.17.16",
|
|
25
|
+
"@types/node": "^20.17.8",
|
|
26
|
+
"cross-env": "^7.0.3",
|
|
27
|
+
"eslint": "^9.7.0",
|
|
28
|
+
"neostandard": "^0.11.9",
|
|
29
|
+
"node-karin": "*",
|
|
30
|
+
"tsup": "^8.5.0",
|
|
31
|
+
"tsx": "^4.19.2",
|
|
32
|
+
"typescript": "^5.5.3"
|
|
33
|
+
},
|
|
34
|
+
"karin": {
|
|
35
|
+
"main": "src/index.ts",
|
|
36
|
+
"apps": [
|
|
37
|
+
"lib/apps"
|
|
38
|
+
],
|
|
39
|
+
"ts-apps": [
|
|
40
|
+
"src/apps"
|
|
41
|
+
],
|
|
42
|
+
"web": "lib/web.config.js",
|
|
43
|
+
"ts-web": "src/web.config.ts",
|
|
44
|
+
"static": [
|
|
45
|
+
"resources"
|
|
46
|
+
],
|
|
47
|
+
"files": [
|
|
48
|
+
"config",
|
|
49
|
+
"data",
|
|
50
|
+
"resources"
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
"files": [
|
|
54
|
+
"/lib/**/*.js",
|
|
55
|
+
"/lib/**/*.d.ts",
|
|
56
|
+
"/config/*.json",
|
|
57
|
+
"resources",
|
|
58
|
+
"!lib/app.js"
|
|
59
|
+
],
|
|
60
|
+
"publishConfig": {
|
|
61
|
+
"access": "public",
|
|
62
|
+
"registry": "https://registry.npmjs.org"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@karinjs/plugin-puppeteer": "^1.1.2"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
width: 1067px;
|
|
8
|
+
height: 600px;
|
|
9
|
+
margin: 0;
|
|
10
|
+
padding: 0;
|
|
11
|
+
background-size: cover;
|
|
12
|
+
}
|
|
13
|
+
</style>
|
|
14
|
+
</head>
|
|
15
|
+
|
|
16
|
+
<body>
|
|
17
|
+
<!-- 本地图片 -->
|
|
18
|
+
<img src="{{@file}}" alt="启程宣发">
|
|
19
|
+
</body>
|
|
20
|
+
|
|
21
|
+
</html>
|