-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.62 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.62 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
{
"$schema": "https://json.schemastore.org/package",
"name": "payload-cloud-storage-vercel-adapter",
"version": "0.1.5",
"description": "Payload Cloud Storage Vercel Adapter",
"author": "Jarvis Prestidge <[email protected]>",
"license": "MIT",
"type": "module",
"funding": "https://github.com/sponsors/jarvisprestidge",
"homepage": "https://github.com/jarvisprestidge/payload-cloud-storage-vercel-adapter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jarvisprestidge/payload-cloud-storage-vercel-adapter.git"
},
"bugs": "https://github.com/jarvisprestidge/payload-cloud-storage-vercel-adapter/issues",
"keywords": [
"cms",
"payload",
"payload cms",
"cloud storage",
"vercel",
"vercel adapter",
"typescript"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"package.json",
"pnpm-lock.yaml",
"README.md"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint --cache .",
"lint:fix": "eslint --fix --cache .",
"format": "prettier --write --cache .",
"type-check": "tsc --noEmit",
"test": "vitest",
"release:version": "changeset version",
"release:publish": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@payloadcms/plugin-cloud-storage": "3.0.0-alpha.54",
"@swc/core": "^1.4.8",
"@swc/types": "^0.1.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vercel/blob": "^0.22.1",
"eslint": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"payload": "3.0.0-alpha.54",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"peerDependencies": {
"@payloadcms/plugin-cloud-storage": "3.0.0-alpha.54",
"@vercel/blob": "^0.22.1",
"payload": "3.0.0-alpha.54"
}
}