-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 924 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 924 Bytes
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
{
"name": "payload-fallback-data",
"version": "1.0.1",
"description": "Use fallback values for data provided by payloadcms.",
"repository": "https://github.com/pemedia/payload-fallback-data",
"author": "info@pemedia.de",
"license": "MIT",
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"prepublishOnly": "tsc"
},
"exports": {
"./server": {
"import": "./dist/server/index.js",
"types": "./dist/server/index.d.ts"
},
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
},
"./types": {
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"payload",
"payloadcms"
],
"dependencies": {
"ts-pattern": "^5.6.2"
},
"peerDependencies": {
"payload": "^3.25.0",
"typescript": "^5"
},
"type": "module"
}