-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "picgo-plugin-pic-migrater",
"version": "1.3.3",
"description": "A PicGo plugin for images in markdown files migrating from one picBed to another one.",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/PicGo/picgo-plugin-pic-migrater"
},
"homepage": "https://github.com/PicGo/picgo-plugin-pic-migrater",
"scripts": {
"test": "node test.js",
"build": "tsc -p .",
"dev": "tsc -w -p .",
"cz": "git-cz",
"release": "bump-version",
"lint": "eslint src && tsc --noEmit"
},
"keywords": [
"picgo",
"picgo-gui-plugin",
"picgo-plugin"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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": "^7.6.1",
"@eslint/eslintrc": "^3.3.1",
"@picgo/bump-version": "^1.1.2",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"commitizen": "^3.1.2",
"conventional-changelog": "^3.1.25",
"cz-customizable": "5.8.0",
"eslint": "^9.39.1",
"eslint-config-love": "^134.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"husky": "^2.7.0",
"picgo": "1.5.11",
"typescript": "^5.9.3"
},
"dependencies": {
"compare-versions": "^5.0.0",
"globby": "^9.0.0",
"image-size": "^1.0.2"
},
"engines": {
"node": ">=14.13.1"
}
}