-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
52
53
54
{
"name": "payload-cloudinary",
"version": "1.5.0",
"description": "A Cloudinary storage plugin for Payload CMS",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && bun build ./src/index.ts --outdir ./dist --target node",
"dev": "bun run src/index.ts",
"test": "bun test",
"prepublishOnly": "bun run build",
"release": "chmod +x ./scripts/publish.sh && ./scripts/publish.sh"
},
"keywords": [
"payload-cms",
"cloudinary",
"storage",
"plugin",
"upload",
"media"
],
"author": "Syed Muzamil",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/syedmuzamilm/payload-cloudinary.git"
},
"bugs": {
"url": "https://github.com/syedmuzamilm/payload-cloudinary/issues"
},
"homepage": "https://github.com/syedmuzamilm/payload-cloudinary#readme",
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0",
"payload": "^2.0.0"
},
"dependencies": {
"@payloadcms/plugin-cloud-storage": "^3.11.0",
"cloudinary": "^2.5.1"
},
"engines": {
"node": ">=18.0.0"
}
}