@nger/fk-upload 1.0.163 → 1.0.167
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/dist/electon.js +4 -3
- package/dist/templates/add-task.js +1 -1
- package/dist/templates/tasks/fk.service.js +1 -1
- package/dist/templates/tasks/upload-task.js +11 -8
- package/electron/.env +32 -0
- package/electron/package.json +31 -0
- package/electron/pnpm-lock.yaml +2888 -0
- package/{.env → env.env} +0 -2
- package/package.json +10 -5
- package/pnpm-lock.yaml +1390 -57
- package/dist/entities/fk-login-account.entity.d.ts +0 -6
- package/dist/entities/fk-login-account.entity.js +0 -47
- package/dist/fk-upload.controller.d.ts +0 -28
- package/dist/fk-upload.controller.js +0 -271
- package/dist/fk-v2.service.d.ts +0 -29
- package/dist/fk-v2.service.js +0 -152
- package/dist/fk.service.d.ts +0 -17
- package/dist/fk.service.js +0 -89
- package/dist/templates/account-manage.d.ts +0 -3
- package/dist/templates/account-manage.js +0 -27
- package/dist/templates/add-account.d.ts +0 -0
- package/dist/templates/add-account.js +0 -1
- package/dist/templates/create-download-task.d.ts +0 -0
- package/dist/templates/create-download-task.js +0 -1
- package/dist/templates/download-task.d.ts +0 -10
- package/dist/templates/download-task.js +0 -47
- package/dist/templates/login.service.d.ts +0 -2
- package/dist/templates/login.service.js +0 -16
- package/dist/templates/receive-shedule-task.d.ts +0 -14
- package/dist/templates/receive-shedule-task.js +0 -64
- package/dist/templates/relogin.d.ts +0 -5
- package/dist/templates/relogin.js +0 -25
- package/dist/templates/task-types.d.ts +0 -34
- package/dist/templates/task-types.js +0 -2
- package/dist/templates/task.service.d.ts +0 -0
- package/dist/templates/task.service.js +0 -407
- package/dist/templates/tasks/create-download-task.d.ts +0 -12
- package/dist/templates/tasks/create-download-task.js +0 -65
- package/dist/templates/tasks/index.d.ts +0 -0
- package/dist/templates/tasks/index.js +0 -1
- package/dist/templates/tasks/receive-shedule-task.d.ts +0 -16
- package/dist/templates/tasks/receive-shedule-task.js +0 -66
- package/dist/templates/upload.service.d.ts +0 -0
- package/dist/templates/upload.service.js +0 -1
- package/dist/tests/test.d.ts +0 -3
- package/dist/tests/test.js +0 -101
package/{.env → env.env}
RENAMED
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nger/fk-upload",
|
3
|
-
"version": "1.0.
|
4
|
-
"description": "",
|
3
|
+
"version": "1.0.167",
|
4
|
+
"description": "nger fk upload",
|
5
5
|
"main": "dist/electon.js",
|
6
6
|
"types": "dist/core.d.ts",
|
7
7
|
"nger": {
|
@@ -11,7 +11,7 @@
|
|
11
11
|
"publishConfig": {
|
12
12
|
"access": "public"
|
13
13
|
},
|
14
|
-
"author": "",
|
14
|
+
"author": "imeepos",
|
15
15
|
"license": "ISC",
|
16
16
|
"dependencies": {
|
17
17
|
"@nger/api": "^1.0.0",
|
@@ -33,16 +33,21 @@
|
|
33
33
|
"fs-extra": "^10.1.0",
|
34
34
|
"md5-file": "^5.0.0",
|
35
35
|
"multihashing-async": "^2.1.4",
|
36
|
+
"multispinner": "^0.2.1",
|
36
37
|
"react": "^18.1.0",
|
37
38
|
"request": "^2.88.2"
|
38
39
|
},
|
39
40
|
"devDependencies": {
|
40
|
-
"electron": "^18.2.3"
|
41
|
+
"electron": "^18.2.3",
|
42
|
+
"electron-builder": "^23.0.3"
|
41
43
|
},
|
42
44
|
"scripts": {
|
43
45
|
"tsc": "tsc",
|
44
46
|
"tsc:build": "tsc",
|
45
|
-
"electron": "electron ."
|
47
|
+
"electron": "electron .",
|
48
|
+
"pack": "electron-builder --dir",
|
49
|
+
"dist": "electron-builder --win --ia32",
|
50
|
+
"postinstall": "electron-builder install-app-deps"
|
46
51
|
},
|
47
52
|
"readme": "## admin\n\n## account\n\n## test url -- \n\n## \n\nhttp://kaifa2.jidujiaowang.com/web/index.php?c=site&a=entry&eid=8&version_id=0\nadmin888\n12345678"
|
48
53
|
}
|