-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.79 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.79 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "picgo",
"version": "2.0.3",
"description": "A tool for image uploading",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"homepage": "https://picgo.app/",
"bin": {
"picgo": "./bin/picgo"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./bin/picgo",
"lint": "pnpm lint:dpdm && tsc --noEmit && eslint src --ext .ts",
"test": "vitest run",
"build": "cross-env NODE_ENV=production rimraf ./dist && rollup -c rollup.config.js",
"dev": "cross-env NODE_ENV=development rollup -c rollup.config.js -w",
"patch": "npm version patch && git push origin master && git push origin --tags",
"minor": "npm version minor && git push origin master && git push origin --tags",
"major": "npm version major && git push origin master && git push origin --tags",
"cz": "git-cz",
"release": "bump-version",
"prepare": "husky",
"commitlint": "commitlint --edit",
"lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/index.ts"
},
"keywords": [
"picture",
"upload",
"util"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
},
"author": "Molunerfinn",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@eslint/js": "^9.39.1",
"@picgo/bump-version": "^2.0.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/cross-spawn": "^6.0.0",
"@types/fs-extra": "^5.0.4",
"@types/image-size": "^0.0.29",
"@types/inquirer": "^0.0.42",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.175",
"@types/md5": "^2.1.32",
"@types/mime-types": "^2.1.0",
"@types/node": "20.19.26",
"@types/resolve": "^0.0.8",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"commitizen": "^4.3.1",
"conventional-changelog": "^3.0.6",
"copyfiles": "^2.1.0",
"cross-env": "^7.0.3",
"cz-customizable": "^7.5.1",
"dpdm": "^3.14.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"execa": "^5.1.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-string": "^3.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"@picgo/i18n": "^1.0.0",
"@picgo/store": "^2.0.2",
"axios": "^1.13.2",
"chalk": "^2.4.1",
"commander": "^8.1.0",
"comment-json": "^4.5.1",
"cross-spawn": "^6.0.5",
"dayjs": "^1.7.4",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"form-data": "^4.0.5",
"fs-extra": "^6.0.1",
"giget": "^2.0.0",
"globby": "^11.0.4",
"hono": "^4.11.3",
"image-size": "^0.8.3",
"inquirer": "^6.0.0",
"is-wsl": "^2.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"md5": "^2.2.1",
"mime-types": "3.0.2",
"minimist": "^1.2.5",
"open": "^11.0.0",
"resolve": "^1.8.1",
"tunnel": "^0.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/PicGo/PicGo-Core"
},
"picBed": {
"current": "smms"
},
"plugins": {},
"engines": {
"node": ">= 20.19.0"
}
}