-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "picgo-plugin-ftp-uploader",
"version": "2.1.1",
"packageManager": "pnpm@10.10.0",
"description": "An uploader for uploading via FTP",
"author": "imba97",
"license": "MIT",
"homepage": "https://github.com/imba97/picgo-plugin-ftp-uploader#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/imba97/picgo-plugin-ftp-uploader"
},
"bugs": {
"url": "https://github.com/imba97/picgo-plugin-ftp-uploader/issues"
},
"keywords": [
"picgo",
"picgo-gui-plugin",
"picgo-plugin"
],
"main": "dist/index.cjs",
"files": [
"dist/index.cjs",
"logo.png"
],
"scripts": {
"prepare": "simple-git-hooks",
"build": "unbuild",
"lint": "eslint --cache",
"release": "bumpp"
},
"dependencies": {
"ftp": "^0.3.10",
"pathe": "^2.0.3"
},
"devDependencies": {
"@imba97/eslint-config": "^0.0.6",
"@types/ftp": "^0.3.36",
"@types/node": "^22.15.15",
"bumpp": "^10.1.0",
"eslint": "^9.26.0",
"lint-staged": "^15.5.2",
"picgo": "^1.5.8",
"simple-git-hooks": "^2.13.0",
"typescript": "^5.8.3",
"unbuild": "^3.5.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}