@payloadcms/next 3.0.0-canary.926cbeb → 3.0.0-canary.a0b06af

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payloadcms/next",
3
- "version": "3.0.0-canary.926cbeb",
3
+ "version": "3.0.0-canary.a0b06af",
4
4
  "homepage": "https://payloadcms.com",
5
5
  "repository": {
6
6
  "type": "git",
@@ -57,39 +57,33 @@
57
57
  "graphql-playground-html": "1.6.30",
58
58
  "http-status": "1.6.2",
59
59
  "path-to-regexp": "^6.2.1",
60
- "qs": "6.12.1",
60
+ "qs-esm": "7.0.2",
61
61
  "react-diff-viewer-continued": "3.2.6",
62
62
  "sass": "1.77.4",
63
63
  "sonner": "^1.5.0",
64
+ "uuid": "10.0.0",
64
65
  "ws": "^8.16.0",
65
- "@payloadcms/translations": "3.0.0-canary.926cbeb",
66
- "@payloadcms/graphql": "3.0.0-canary.926cbeb",
67
- "@payloadcms/ui": "3.0.0-canary.926cbeb"
66
+ "@payloadcms/graphql": "3.0.0-canary.a0b06af",
67
+ "@payloadcms/translations": "3.0.0-canary.a0b06af",
68
+ "@payloadcms/ui": "3.0.0-canary.a0b06af"
68
69
  },
69
70
  "devDependencies": {
70
71
  "@next/eslint-plugin-next": "^14.1.0",
71
72
  "@types/busboy": "^1.5.3",
72
- "@types/react": "npm:types-react@19.0.0-beta.2",
73
- "@types/react-dom": "npm:types-react-dom@19.0.0-beta.2",
73
+ "@types/react": "npm:types-react@19.0.0-rc.0",
74
+ "@types/react-dom": "npm:types-react-dom@19.0.0-rc.0",
75
+ "@types/uuid": "10.0.0",
74
76
  "@types/ws": "^8.5.10",
75
- "css-loader": "^6.10.0",
76
- "css-minimizer-webpack-plugin": "^6.0.0",
77
- "mini-css-extract-plugin": "1.6.2",
78
- "postcss-loader": "^8.1.1",
79
- "postcss-preset-env": "^9.5.14",
80
- "sass-loader": "14.2.1",
81
- "swc-loader": "^0.2.6",
82
- "swc-plugin-transform-remove-imports": "^1.12.1",
83
- "terser-webpack-plugin": "^5.3.10",
84
- "webpack": "^5.78.0",
85
- "webpack-cli": "^5.1.4",
86
- "@payloadcms/eslint-config": "1.1.1",
87
- "payload": "3.0.0-canary.926cbeb"
77
+ "esbuild": "0.23.0",
78
+ "esbuild-sass-plugin": "3.3.1",
79
+ "swc-plugin-transform-remove-imports": "1.14.0",
80
+ "@payloadcms/eslint-config": "3.0.0-beta.59",
81
+ "payload": "3.0.0-canary.a0b06af"
88
82
  },
89
83
  "peerDependencies": {
90
84
  "graphql": "^16.8.1",
91
85
  "next": "^15.0.0-canary.53",
92
- "payload": "3.0.0-canary.926cbeb"
86
+ "payload": "3.0.0-canary.a0b06af"
93
87
  },
94
88
  "engines": {
95
89
  "node": "^18.20.2 || >=20.9.0"
@@ -98,15 +92,15 @@
98
92
  "registry": "https://registry.npmjs.org/"
99
93
  },
100
94
  "overrides": {
101
- "@types/react": "npm:types-react@19.0.0-beta.2",
102
- "@types/react-dom": "npm:types-react-dom@19.0.0-beta.2"
95
+ "@types/react": "npm:types-react@19.0.0-rc.0",
96
+ "@types/react-dom": "npm:types-react-dom@19.0.0-rc.0"
103
97
  },
104
98
  "scripts": {
105
- "build": "rm -rf dist && rm -rf tsconfig.tsbuildinfo && pnpm copyfiles && pnpm build:types && pnpm build:swc && pnpm build:cjs && pnpm build:webpack",
99
+ "build": "rm -rf dist && rm -rf tsconfig.tsbuildinfo && pnpm copyfiles && pnpm build:types && pnpm build:swc && pnpm build:cjs && pnpm build:esbuild",
106
100
  "build:cjs": "swc ./src/withPayload.js -o ./dist/cjs/withPayload.cjs --config-file .swcrc-cjs --strip-leading-paths",
101
+ "build:esbuild": "node bundleScss.js",
107
102
  "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
108
103
  "build:types": "tsc --emitDeclarationOnly --outDir dist",
109
- "build:webpack": "webpack --config webpack.config.js",
110
104
  "clean": "rimraf {dist,*.tsbuildinfo}",
111
105
  "copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" \"src/app/api/**\" dist/",
112
106
  "fix": "eslint \"src/**/*.{ts,tsx}\" --fix",