@spfn/cms 0.2.0-beta.2 → 0.2.0-beta.20

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": "@spfn/cms",
3
- "version": "0.2.0-beta.2",
3
+ "version": "0.2.0-beta.20",
4
4
  "description": "SPFN CMS - Content Management System with type-safe labels and Next.js integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -45,13 +45,17 @@
45
45
  "react",
46
46
  "typescript"
47
47
  ],
48
- "author": "SPFN Team",
48
+ "author": "Ray Im <rayim@fxy.global>",
49
49
  "license": "MIT",
50
50
  "repository": {
51
51
  "type": "git",
52
52
  "url": "https://github.com/spfn/spfn.git",
53
53
  "directory": "packages/cms"
54
54
  },
55
+ "homepage": "https://github.com/spfn/spfn/tree/main/packages/cms#readme",
56
+ "bugs": {
57
+ "url": "https://github.com/spfn/spfn/issues"
58
+ },
55
59
  "spfn": {
56
60
  "prefix": "/_cms",
57
61
  "schemas": [
@@ -66,37 +70,38 @@
66
70
  "setupMessage": " 📚 Next steps:\n 1. Import CMS components: import { useLabels } from '@spfn/cms'\n 2. View labels in Drizzle Studio: pnpm spfn db studio\n 3. CMS API available at: http://localhost:8790/_cms\n 4. Learn more: https://github.com/spfnio/spfn"
67
71
  },
68
72
  "peerDependencies": {
69
- "drizzle-orm": "^0.44.7",
73
+ "@spfn/core": ">=0.2.0-beta.49",
74
+ "drizzle-orm": ">=0.44.7",
70
75
  "next": "^15.0.0 || ^16.0.0",
71
- "react": "^18.0.0 || ^19.0.0",
72
- "@spfn/core": "0.2.0-beta.1"
76
+ "react": "^18.0.0 || ^19.0.0"
73
77
  },
74
78
  "dependencies": {
75
79
  "@sinclair/typebox": "^0.34.0",
76
80
  "jiti": "^2.6.1",
77
- "lodash": "^4.17.21",
81
+ "lodash-es": "^4.17.21",
78
82
  "zustand": "^5.0.8"
79
83
  },
80
84
  "devDependencies": {
81
- "@types/lodash": "^4.17.21",
85
+ "@types/lodash-es": "^4.17.12",
82
86
  "@types/node": "^20.11.0",
83
87
  "@types/react": "^19",
84
88
  "@vitest/coverage-v8": "^4.0.6",
85
89
  "drizzle-kit": "^0.31.6",
86
90
  "drizzle-typebox": "^0.1.0",
87
- "glob": "^11.0.3",
91
+ "glob": "11.1.0",
88
92
  "madge": "^8.0.0",
89
93
  "postgres": "^3.4.0",
90
94
  "tsup": "^8.5.0",
91
95
  "tsx": "^4.20.6",
92
96
  "typescript": "^5.3.3",
93
97
  "vitest": "^4.0.6",
94
- "spfn": "0.2.0-beta.1"
98
+ "@spfn/core": "0.2.0-beta.50",
99
+ "spfn": "0.2.0-beta.49"
95
100
  },
96
101
  "scripts": {
97
102
  "build": "pnpm check:circular && tsup",
98
103
  "watch": "tsup --watch",
99
- "clean": "rm -rf dist migrations",
104
+ "clean": "rm -rf dist",
100
105
  "db:generate": "drizzle-kit generate",
101
106
  "codegen": "node ../cli/bin/spfn.js codegen run",
102
107
  "rebuild-cache": "tsx src/scripts/rebuild-published-cache.ts",