This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (73 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "payload-join",
"version": "0.1.0",
"description": "some experiments with the new join field in PayloadCMS",
"type": "module",
"license": "MIT",
"author": {
"name": "WALX Tech e.K.",
"email": "[email protected]",
"url": "https://walx.tech"
},
"contributors": [
{
"name": "Ш41%",
"email": "[email protected]",
"url": "https://w41x.io"
}
],
"homepage": "https://github.com/w41x/payload-joins#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/w41x/payload-joins.git"
},
"keywords": [
"payload",
"cms",
"join"
],
"bugs": {
"url": "https://github.com/w41x/payload-joins/issues"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"dist",
"*.js",
"*.d.ts"
],
"scripts": {
"dev": "next dev",
"gen:types": "payload generate:types",
"gen:imap": "payload generate:importmap"
},
"dependencies": {
"@payloadcms/db-mongodb": "3.0.0-beta.115",
"@payloadcms/db-postgres": "3.0.0-beta.115",
"@payloadcms/next": "3.0.0-beta.115",
"@payloadcms/richtext-lexical": "3.0.0-beta.115",
"@payloadcms/translations": "3.0.0-beta.115",
"@payloadcms/ui": "3.0.0-beta.115",
"next": "15.0.0-canary.196",
"payload": "3.0.0-beta.115",
"react": "19.0.0-rc-77b637d6-20241016",
"react-dom": "19.0.0-rc-77b637d6-20241016"
},
"devDependencies": {
"@types/node": "^22.7.6",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"typescript": "5.7.0-dev.20241017"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
},
"engines": {
"node": "^23.0.0"
},
"packageManager": "[email protected]",
"private": true
}