-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "payload-blurhash-plugin",
"version": "3.0.1",
"description": "Payload CMS plugin for automatic Blurhash encoding of images",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/invakid404/payload-blurhash-plugin.git"
},
"author": "Tsvetomir Bonev <[email protected]>",
"license": "Unlicense",
"scripts": {
"build": "node build.js",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "node build.js"
},
"files": ["lib/**/*"],
"engines": {
"node": "^18.20.2 || >=20.9.0"
},
"dependencies": {
"blurhash": "^2.0.4",
"minimatch": "^10.0.1",
"thumbhash": "^0.1.1",
"zod": "^3.22.4"
},
"peerDependencies": {
"sharp": "0.x"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@vercel/ncc": "^0.38.1",
"next": "15.0.0-canary.104",
"payload": "v3.0.0-beta.76",
"prettier": "^3.3.3",
"typescript": "5.5.4"
}
}