canopycms 0.0.7 → 0.0.9
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/dist/cli/generate-ai-content.d.ts.map +1 -1
- package/dist/cli/generate-ai-content.js +2704 -76
- package/dist/cli/generate-ai-content.js.map +1 -1
- package/dist/cli/init.js +3809 -335
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"//": "@codemirror/language, @lezer/highlight: workaround — @mdxeditor/editor uses cm6-theme-basic-light which peer-requires these but mdxeditor doesn't declare them as dependencies",
|
|
3
3
|
"name": "canopycms",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"description": "CanopyCMS core package: schema-driven content, branch-aware editing, and editor UI for Next.js.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -74,23 +74,24 @@
|
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
76
|
"@clack/prompts": "^1.1.0",
|
|
77
|
+
"@codemirror/language": "^6.0.0",
|
|
77
78
|
"@dnd-kit/core": "^6.3.1",
|
|
78
|
-
"@tabler/icons-react": "^3.36.0",
|
|
79
79
|
"@dnd-kit/sortable": "^8.0.0",
|
|
80
80
|
"@dnd-kit/utilities": "^3.2.2",
|
|
81
81
|
"@emotion/react": "^11.13.3",
|
|
82
|
+
"@lezer/highlight": "^1.0.0",
|
|
82
83
|
"@mantine/colors-generator": "^7.14.2",
|
|
83
84
|
"@mantine/core": "^7.14.2",
|
|
84
85
|
"@mantine/hooks": "^7.14.2",
|
|
85
86
|
"@mantine/modals": "^7.14.2",
|
|
86
87
|
"@mantine/notifications": "^7.14.2",
|
|
87
|
-
"@codemirror/language": "^6.0.0",
|
|
88
|
-
"@lezer/highlight": "^1.0.0",
|
|
89
88
|
"@mdxeditor/editor": "^3.52.4",
|
|
90
89
|
"@octokit/rest": "^20.0.2",
|
|
90
|
+
"@tabler/icons-react": "^3.36.0",
|
|
91
91
|
"chokidar": "^4.0.3",
|
|
92
92
|
"chroma-js": "^3.2.0",
|
|
93
93
|
"gray-matter": "^4.0.3",
|
|
94
|
+
"jiti": "^2.6.1",
|
|
94
95
|
"minimatch": "^9.0.5",
|
|
95
96
|
"pathe": "^1.1.2",
|
|
96
97
|
"react-icons": "^5.5.0",
|
|
@@ -116,6 +117,7 @@
|
|
|
116
117
|
"@types/react-dom": "^18.3.1",
|
|
117
118
|
"@vitejs/plugin-react": "^5.1.0",
|
|
118
119
|
"autoprefixer": "^10.4.20",
|
|
120
|
+
"esbuild": "^0.24.2",
|
|
119
121
|
"jsdom": "^24.1.3",
|
|
120
122
|
"postcss": "^8.4.47",
|
|
121
123
|
"react": "^18.3.1",
|