This repository was archived by the owner on Dec 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.43 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.43 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
{
"name": "payload-plugin-template",
"version": "3.0.0-beta.0",
"homepage:": "https://payloadcms.com",
"description": "Payload plugin template",
"author": "dev@payloadcms.com",
"license": "MIT",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"build:all": "pnpm build && pnpm -C dev build",
"build:app": "pnpm -C dev build",
"clean": "rimraf {dist,*.tsbuildinfo,package}",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png}\" dist/",
"dev": "pnpm -C dev dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm prepublishOnly",
"prepublishOnly": "pnpm clean && pnpm build && pnpm copyfiles"
},
"peerDependencies": {
"next": "15.0.0-canary.173",
"payload": "^3.0.0-beta.111"
},
"dependencies": {
"@payloadcms/ui": "3.0.0-beta.111",
"react": "19.0.0-rc-3edc000d-20240926",
"react-dom": "19.0.0-rc-3edc000d-20240926"
},
"devDependencies": {
"@payloadcms/eslint-config": "3.0.0-beta.97",
"@types/node": "22.7.5",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"copyfiles": "^2.4.1",
"next": "15.0.0-canary.173",
"payload": "3.0.0-beta.111",
"react": "19.0.0-rc-3edc000d-20240926",
"react-dom": "19.0.0-rc-3edc000d-20240926",
"rimraf": "^6.0.1",
"typescript": "5.5.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
},
"publishConfig": {
"main": "./dist/index.js",
"registry": "https://registry.npmjs.org/",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./components": {
"import": "./dist/components/index.js",
"default": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
}
}
},
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts",
"types": "./src/index.d.ts"
},
"./components": {
"import": "./src/components/index.ts",
"default": "./src/components/index.ts",
"types": "./src/components/index.d.ts"
}
}
}