piclist 1.8.8 → 1.8.10
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/.eslintrc.js +1 -0
- package/CHANGELOG.md +19 -0
- package/dist/core/Lifecycle.d.ts +5 -1
- package/dist/core/PicGo.d.ts +2 -2
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/lib/Commander.d.ts +1 -1
- package/dist/lib/LifecyclePlugins.d.ts +1 -1
- package/dist/lib/Logger.d.ts +1 -1
- package/dist/lib/PluginHandler.d.ts +1 -1
- package/dist/lib/PluginLoader.d.ts +1 -1
- package/dist/lib/Request.d.ts +2 -2
- package/dist/plugins/beforetransformer/compress.d.ts +1 -1
- package/dist/plugins/beforetransformer/watermark.d.ts +1 -1
- package/dist/plugins/beforeupload/buildInRename.d.ts +1 -1
- package/dist/plugins/commander/config.d.ts +1 -1
- package/dist/plugins/commander/i18n.d.ts +1 -1
- package/dist/plugins/commander/index.d.ts +1 -1
- package/dist/plugins/commander/init.d.ts +1 -1
- package/dist/plugins/commander/pluginHandler.d.ts +1 -1
- package/dist/plugins/commander/proxy.d.ts +1 -1
- package/dist/plugins/commander/setting.d.ts +1 -1
- package/dist/plugins/commander/upload.d.ts +1 -1
- package/dist/plugins/commander/use.d.ts +1 -1
- package/dist/plugins/transformer/base64.d.ts +1 -1
- package/dist/plugins/transformer/index.d.ts +1 -1
- package/dist/plugins/transformer/path.d.ts +1 -1
- package/dist/plugins/uploader/aliyun.d.ts +1 -1
- package/dist/plugins/uploader/awss3plist.d.ts +1 -1
- package/dist/plugins/uploader/github.d.ts +1 -1
- package/dist/plugins/uploader/imgur.d.ts +1 -1
- package/dist/plugins/uploader/index.d.ts +1 -1
- package/dist/plugins/uploader/local.d.ts +1 -1
- package/dist/plugins/uploader/lsky.d.ts +1 -1
- package/dist/plugins/uploader/qiniu.d.ts +1 -1
- package/dist/plugins/uploader/s3/uploader.d.ts +6 -7
- package/dist/plugins/uploader/s3/utils.d.ts +2 -2
- package/dist/plugins/uploader/sftp.d.ts +1 -1
- package/dist/plugins/uploader/smms.d.ts +1 -1
- package/dist/plugins/uploader/tcyun.d.ts +1 -1
- package/dist/plugins/uploader/telegraph.d.ts +1 -1
- package/dist/plugins/uploader/upyun.d.ts +1 -1
- package/dist/plugins/uploader/webdav.d.ts +1 -1
- package/dist/types/index.d.ts +4 -4
- package/dist/utils/common.d.ts +1 -1
- package/dist/utils/createContext.d.ts +1 -1
- package/dist/utils/db.d.ts +2 -2
- package/dist/utils/getClipboardImage.d.ts +1 -1
- package/dist/utils/initUtils.d.ts +1 -1
- package/dist/utils/interfaces.d.ts +2 -2
- package/dist/utils/sshClient.d.ts +1 -1
- package/package.json +156 -155
package/package.json
CHANGED
|
@@ -1,155 +1,156 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "piclist",
|
|
3
|
-
"version": "1.8.
|
|
4
|
-
"description": "Modified PicGo core, A tool for picture uploading",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "Kuingsmile",
|
|
7
|
-
"email": "pkukuing@gmail.com"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://piclist.cn",
|
|
10
|
-
"bugs": {
|
|
11
|
-
"url": "https://github.com/Kuingsmile/PicList-core/issues",
|
|
12
|
-
"email": "pkukuing@gmail.com"
|
|
13
|
-
},
|
|
14
|
-
"main": "dist/index.cjs.js",
|
|
15
|
-
"module": "dist/index.esm.js",
|
|
16
|
-
"typings": "dist/index.d.ts",
|
|
17
|
-
"bin": {
|
|
18
|
-
"picgo": "./bin/picgo",
|
|
19
|
-
"picgo-server": "./bin/picgo-server"
|
|
20
|
-
},
|
|
21
|
-
"publishConfig": {
|
|
22
|
-
"access": "public"
|
|
23
|
-
},
|
|
24
|
-
"scripts": {
|
|
25
|
-
"start": "node ./bin/picgo",
|
|
26
|
-
"server": "node ./bin/picgo-server",
|
|
27
|
-
"lint": "eslint src/**/*.ts",
|
|
28
|
-
"build": "cross-env NODE_ENV=production rimraf ./dist && rollup -c rollup.config.js",
|
|
29
|
-
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
|
|
30
|
-
"cz": "git-cz",
|
|
31
|
-
"release": "bump-version",
|
|
32
|
-
"lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/index.ts"
|
|
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
|
-
"@rollup/plugin-
|
|
61
|
-
"@rollup/plugin-
|
|
62
|
-
"@rollup/plugin-
|
|
63
|
-
"@
|
|
64
|
-
"@types/
|
|
65
|
-
"@types/
|
|
66
|
-
"@types/
|
|
67
|
-
"@types/
|
|
68
|
-
"@types/
|
|
69
|
-
"@types/
|
|
70
|
-
"@types/
|
|
71
|
-
"@types/
|
|
72
|
-
"@types/mime
|
|
73
|
-
"@types/
|
|
74
|
-
"@types/
|
|
75
|
-
"@types/
|
|
76
|
-
"@types/
|
|
77
|
-
"@types/
|
|
78
|
-
"@types/
|
|
79
|
-
"@
|
|
80
|
-
"@typescript-eslint/
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"eslint
|
|
89
|
-
"eslint-
|
|
90
|
-
"eslint-plugin-
|
|
91
|
-
"eslint-plugin-
|
|
92
|
-
"eslint-plugin-
|
|
93
|
-
"eslint-plugin-
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"rollup
|
|
99
|
-
"rollup-plugin-
|
|
100
|
-
"rollup-plugin-
|
|
101
|
-
"rollup-plugin-
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"@aws-sdk/
|
|
107
|
-
"@aws-sdk/
|
|
108
|
-
"@
|
|
109
|
-
"@picgo/
|
|
110
|
-
"@
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"mime
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
"
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "piclist",
|
|
3
|
+
"version": "1.8.10",
|
|
4
|
+
"description": "Modified PicGo core, A tool for picture uploading",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Kuingsmile",
|
|
7
|
+
"email": "pkukuing@gmail.com"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://piclist.cn",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/Kuingsmile/PicList-core/issues",
|
|
12
|
+
"email": "pkukuing@gmail.com"
|
|
13
|
+
},
|
|
14
|
+
"main": "dist/index.cjs.js",
|
|
15
|
+
"module": "dist/index.esm.js",
|
|
16
|
+
"typings": "dist/index.d.ts",
|
|
17
|
+
"bin": {
|
|
18
|
+
"picgo": "./bin/picgo",
|
|
19
|
+
"picgo-server": "./bin/picgo-server"
|
|
20
|
+
},
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"start": "node ./bin/picgo",
|
|
26
|
+
"server": "node ./bin/picgo-server",
|
|
27
|
+
"lint": "eslint src/**/*.ts",
|
|
28
|
+
"build": "cross-env NODE_ENV=production rimraf ./dist && rollup -c rollup.config.js",
|
|
29
|
+
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
|
|
30
|
+
"cz": "git-cz",
|
|
31
|
+
"release": "bump-version",
|
|
32
|
+
"lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/index.ts",
|
|
33
|
+
"publish:npm": "cross-env NODE_ENV=production rimraf ./dist && rollup -c rollup.config.js && npm publish"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"picture",
|
|
37
|
+
"upload",
|
|
38
|
+
"util"
|
|
39
|
+
],
|
|
40
|
+
"husky": {
|
|
41
|
+
"hooks": {
|
|
42
|
+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"config": {
|
|
46
|
+
"commitizen": {
|
|
47
|
+
"path": "./node_modules/cz-customizable"
|
|
48
|
+
},
|
|
49
|
+
"cz-customizable": {
|
|
50
|
+
"config": "./node_modules/node-bump-version/.cz-config.js"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"commitlint": {
|
|
54
|
+
"extends": [
|
|
55
|
+
"./node_modules/node-bump-version/commitlint-node"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
61
|
+
"@rollup/plugin-json": "^6.0.1",
|
|
62
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
63
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
64
|
+
"@types/cross-spawn": "^6.0.5",
|
|
65
|
+
"@types/ejs": "^3.1.5",
|
|
66
|
+
"@types/fs-extra": "^11.0.4",
|
|
67
|
+
"@types/heic-convert": "^1.2.3",
|
|
68
|
+
"@types/image-size": "^0.8.0",
|
|
69
|
+
"@types/inquirer": "^0.0.42",
|
|
70
|
+
"@types/js-yaml": "^4.0.9",
|
|
71
|
+
"@types/lodash": "^4.14.201",
|
|
72
|
+
"@types/mime": "^3.0.4",
|
|
73
|
+
"@types/mime-types": "^2.1.3",
|
|
74
|
+
"@types/minimatch": "^3.0.3",
|
|
75
|
+
"@types/node": "16.11.7",
|
|
76
|
+
"@types/resolve": "^0.0.8",
|
|
77
|
+
"@types/text-to-svg": "^3.1.4",
|
|
78
|
+
"@types/tunnel": "^0.0.6",
|
|
79
|
+
"@types/uuid": "^9.0.7",
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
81
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
82
|
+
"babel-eslint": "^10.1.0",
|
|
83
|
+
"builtins": "^4.0.0",
|
|
84
|
+
"conventional-changelog": "^3.0.6",
|
|
85
|
+
"cross-env": "^7.0.3",
|
|
86
|
+
"cz-customizable": "^5.10.0",
|
|
87
|
+
"dpdm": "^3.14.0",
|
|
88
|
+
"eslint": "^8.57.0",
|
|
89
|
+
"eslint-config-standard-with-typescript": "^39.1.1",
|
|
90
|
+
"eslint-plugin-import": "^2.29.1",
|
|
91
|
+
"eslint-plugin-n": "^16.3.1",
|
|
92
|
+
"eslint-plugin-node": "^11.1.0",
|
|
93
|
+
"eslint-plugin-promise": "^6.2.0",
|
|
94
|
+
"eslint-plugin-standard": "^5.0.0",
|
|
95
|
+
"husky": "^1.3.1",
|
|
96
|
+
"node-bump-version": "^1.0.2",
|
|
97
|
+
"pre-commit": "^1.2.2",
|
|
98
|
+
"rollup": "^2.79.1",
|
|
99
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
100
|
+
"rollup-plugin-string": "^3.0.0",
|
|
101
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
102
|
+
"rollup-plugin-typescript2": "^0.35.0",
|
|
103
|
+
"typescript": "^4.9.5"
|
|
104
|
+
},
|
|
105
|
+
"dependencies": {
|
|
106
|
+
"@aws-sdk/client-s3": "3.421.0",
|
|
107
|
+
"@aws-sdk/lib-storage": "3.421.0",
|
|
108
|
+
"@aws-sdk/s3-request-presigner": "3.421.0",
|
|
109
|
+
"@picgo/i18n": "^1.0.0",
|
|
110
|
+
"@picgo/store": "^2.1.0",
|
|
111
|
+
"@smithy/node-http-handler": "2.1.6",
|
|
112
|
+
"axios": "^1.6.8",
|
|
113
|
+
"chalk": "^2.4.1",
|
|
114
|
+
"commander": "^8.1.0",
|
|
115
|
+
"cross-spawn": "^7.0.3",
|
|
116
|
+
"dayjs": "^1.11.11",
|
|
117
|
+
"download-git-repo": "^3.0.2",
|
|
118
|
+
"ejs": "^2.6.1",
|
|
119
|
+
"file-type": "16.2.0",
|
|
120
|
+
"form-data": "^4.0.0",
|
|
121
|
+
"fs-extra": "^11.2.0",
|
|
122
|
+
"globby": "^11.1.0",
|
|
123
|
+
"heic-convert": "^1.2.4",
|
|
124
|
+
"hpagent": "1.2.0",
|
|
125
|
+
"image-size": "^1.0.2",
|
|
126
|
+
"inquirer": "^6.0.0",
|
|
127
|
+
"is-wsl": "^2.2.0",
|
|
128
|
+
"js-yaml": "^4.1.0",
|
|
129
|
+
"lodash": "^4.17.21",
|
|
130
|
+
"mime": "2.5.2",
|
|
131
|
+
"mime-types": "2.1.35",
|
|
132
|
+
"minimatch": "^3.0.4",
|
|
133
|
+
"minimist": "^1.2.8",
|
|
134
|
+
"multer": "^1.4.5-lts.1",
|
|
135
|
+
"node-ssh-no-cpu-features": "^2.0.0",
|
|
136
|
+
"qiniu": "7.9.0",
|
|
137
|
+
"resolve": "^1.8.1",
|
|
138
|
+
"rimraf": "^5.0.1",
|
|
139
|
+
"sharp": "^0.32.1",
|
|
140
|
+
"text-to-svg": "^3.1.5",
|
|
141
|
+
"tunnel": "^0.0.6",
|
|
142
|
+
"uuid": "^9.0.1",
|
|
143
|
+
"webdav": "^4.11.2"
|
|
144
|
+
},
|
|
145
|
+
"repository": {
|
|
146
|
+
"type": "git",
|
|
147
|
+
"url": "git+https://github.com/Kuingsmile/PicList-Core.git"
|
|
148
|
+
},
|
|
149
|
+
"picBed": {
|
|
150
|
+
"current": "smms"
|
|
151
|
+
},
|
|
152
|
+
"plugins": {},
|
|
153
|
+
"engines": {
|
|
154
|
+
"node": ">= 16.0.0"
|
|
155
|
+
}
|
|
156
|
+
}
|