forked from chladog/payload-webp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 KB
/
package.json
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
{
"name": "payload-webp",
"version": "1.0.26",
"description": "payloadcms/payload plugin for automatic image conversion to webp format",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint --fix -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chladog/payload-webp.git"
},
"keywords": [
"payload",
"webp"
],
"author": "Lukas Chladek <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/chladog/payload-webp/issues"
},
"homepage": "https://github.com/chladog/payload-webp#readme",
"devDependencies": {
"@types/node": "^17.0.16",
"@types/sharp": "^0.29.5",
"payload": "^0.19.0",
"prettier": "^2.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"files": [
"lib/**/*"
],
"peerDependencies": {
"payload": "^1.0.27"
},
"dependencies": {
"chalk": "4.1.2",
"deepmerge": "^4.2.2",
"sharp": "0.29.3"
}
}