@valkyrianlabs/payload-markdown-docs 0.1.0-canary.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +25 -38
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Valkyrian Labs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@valkyrianlabs/payload-markdown-docs",
3
- "version": "0.1.0-canary.0",
3
+ "version": "0.2.1",
4
4
  "description": "Git-backed Markdown documentation sync for Payload CMS, powered by payload-markdown.",
5
5
  "bin": {
6
6
  "payload-markdown-docs": "./dist/cli/index.js"
7
7
  },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/valkyrianlabs/payload-markdown-docs"
11
+ },
8
12
  "keywords": [
9
13
  "payload",
10
14
  "payload-plugin",
@@ -16,23 +20,23 @@
16
20
  "type": "module",
17
21
  "exports": {
18
22
  ".": {
19
- "import": "./src/index.ts",
20
- "types": "./src/index.ts",
21
- "default": "./src/index.ts"
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js",
25
+ "default": "./dist/index.js"
22
26
  },
23
27
  "./admin": {
24
- "import": "./src/admin/index.ts",
25
- "types": "./src/admin/index.ts",
26
- "default": "./src/admin/index.ts"
28
+ "types": "./dist/admin/index.d.ts",
29
+ "import": "./dist/admin/index.js",
30
+ "default": "./dist/admin/index.js"
27
31
  },
28
32
  "./next": {
29
- "import": "./src/next/index.ts",
30
- "types": "./src/next/index.ts",
31
- "default": "./src/next/index.ts"
33
+ "types": "./dist/next/index.d.ts",
34
+ "import": "./dist/next/index.js",
35
+ "default": "./dist/next/index.js"
32
36
  }
33
37
  },
34
- "main": "./src/index.ts",
35
- "types": "./src/index.ts",
38
+ "main": "./dist/index.js",
39
+ "types": "./dist/index.d.ts",
36
40
  "files": [
37
41
  "dist"
38
42
  ],
@@ -72,6 +76,8 @@
72
76
  "@playwright/test": "1.58.2",
73
77
  "@swc-node/register": "1.10.9",
74
78
  "@swc/cli": "0.6.0",
79
+ "@tailwindcss/postcss": "^4.2.4",
80
+ "@tailwindcss/typography": "^0.5.19",
75
81
  "@types/node": "22.19.9",
76
82
  "@types/react": "19.2.14",
77
83
  "@types/react-dom": "19.2.3",
@@ -79,11 +85,12 @@
79
85
  "cross-env": "^7.0.3",
80
86
  "eslint": "^9.39.4",
81
87
  "eslint-config-next": "16.2.3",
82
- "graphql": "^16.13.2",
88
+ "graphql": "^16.14.0",
83
89
  "mongodb-memory-server": "10.1.4",
84
90
  "next": "16.2.3",
85
91
  "open": "^10.2.0",
86
92
  "payload": "latest",
93
+ "postcss": "^8.5.14",
87
94
  "prettier": "^3.8.3",
88
95
  "qs-esm": "8.0.1",
89
96
  "react": "19.2.4",
@@ -91,13 +98,10 @@
91
98
  "rimraf": "3.0.2",
92
99
  "sharp": "0.34.2",
93
100
  "sort-package-json": "^2.15.1",
101
+ "tailwindcss": "^4.2.4",
94
102
  "typescript": "5.7.3",
95
103
  "vite-tsconfig-paths": "6.0.5",
96
- "vitest": "4.0.18",
97
- "tailwindcss": "^4.2.4",
98
- "@tailwindcss/typography": "^0.5.19",
99
- "@tailwindcss/postcss": "^4.2.4",
100
- "postcss": "^8.5.13"
104
+ "vitest": "4.0.18"
101
105
  },
102
106
  "peerDependencies": {
103
107
  "payload": ">=3.0.0"
@@ -107,25 +111,7 @@
107
111
  "pnpm": "^9 || ^10"
108
112
  },
109
113
  "publishConfig": {
110
- "exports": {
111
- ".": {
112
- "import": "./dist/index.js",
113
- "types": "./dist/index.d.ts",
114
- "default": "./dist/index.js"
115
- },
116
- "./admin": {
117
- "import": "./dist/admin/index.js",
118
- "types": "./dist/admin/index.d.ts",
119
- "default": "./dist/admin/index.js"
120
- },
121
- "./next": {
122
- "import": "./dist/next/index.js",
123
- "types": "./dist/next/index.d.ts",
124
- "default": "./dist/next/index.js"
125
- }
126
- },
127
- "main": "./dist/index.js",
128
- "types": "./dist/index.d.ts"
114
+ "access": "public"
129
115
  },
130
116
  "pnpm": {
131
117
  "onlyBuiltDependencies": [
@@ -139,5 +125,6 @@
139
125
  "registry": "https://registry.npmjs.org/",
140
126
  "dependencies": {
141
127
  "@valkyrianlabs/payload-markdown": "latest"
142
- }
128
+ },
129
+ "packageManager": "pnpm@10.33.0"
143
130
  }