@wecode-team/we0-cms 1.0.18 → 1.0.29

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 (1) hide show
  1. package/package.json +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wecode-team/we0-cms",
3
- "version": "1.0.18",
3
+ "version": "1.0.29",
4
4
  "description": "A CMS component for React applications with shadcn/ui",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -22,6 +22,9 @@
22
22
  "scripts": {
23
23
  "build": "rollup -c --bundleConfigAsCjs",
24
24
  "prepublishOnly": "npm run build",
25
+ "publish:public": "npm run build && NPM_CONFIG_USERCONFIG=$(node -e \"process.stdout.write(require('fs').existsSync('.npmrc.public.local') ? '.npmrc.public.local' : '.npmrc.public')\") npm publish --access public --ignore-scripts",
26
+ "publish:private": "npm run build && NPM_CONFIG_USERCONFIG=$(node -e \"process.stdout.write(require('fs').existsSync('.npmrc.private.local') ? '.npmrc.private.local' : '.npmrc.private')\") npm publish --access public --ignore-scripts",
27
+ "publish:all": "npm run build && NPM_CONFIG_USERCONFIG=$(node -e \"process.stdout.write(require('fs').existsSync('.npmrc.public.local') ? '.npmrc.public.local' : '.npmrc.public')\") npm publish --access public --ignore-scripts && NPM_CONFIG_USERCONFIG=$(node -e \"process.stdout.write(require('fs').existsSync('.npmrc.private.local') ? '.npmrc.private.local' : '.npmrc.private')\") npm publish --access public --ignore-scripts",
25
28
  "test": "echo \"Error: no test specified\" && exit 1"
26
29
  },
27
30
  "keywords": [
@@ -40,6 +43,7 @@
40
43
  },
41
44
  "publishConfig": {
42
45
  "access": "public",
46
+ "registry": "https://registry.npmjs.org/",
43
47
  "git-checks": false
44
48
  },
45
49
  "peerDependencies": {
@@ -55,9 +59,12 @@
55
59
  "@radix-ui/react-slot": "^1.2.4",
56
60
  "@radix-ui/react-switch": "^1.2.6",
57
61
  "@radix-ui/react-tooltip": "^1.2.8",
62
+ "@codemirror/lang-json": "^6.0.1",
63
+ "@uiw/react-codemirror": "^4.23.10",
58
64
  "antd": "^5.12.8",
59
65
  "class-variance-authority": "^0.7.0",
60
66
  "clsx": "^2.1.0",
67
+ "jsonc-parser": "^3.3.1",
61
68
  "lucide-react": "^0.344.0",
62
69
  "tailwind-merge": "^2.2.0"
63
70
  },
@@ -83,6 +90,7 @@
83
90
  "rollup-plugin-postcss": "^4.0.2",
84
91
  "tailwindcss": "^3.4.13",
85
92
  "tailwindcss-animate": "^1.0.7",
93
+ "tslib": "^2.8.1",
86
94
  "typescript": "^5.1.3",
87
95
  "uuid": "^11.1.0"
88
96
  }