flarecms 0.1.1 → 0.2.0
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/LICENSE +20 -20
- package/README.md +73 -73
- package/dist/cli/commands.js +3373 -2594
- package/dist/cli/index.js +3374 -2594
- package/dist/client/index.js +81898 -0
- package/dist/db/index.js +19 -1
- package/dist/index.js +65754 -6806
- package/dist/server/index.js +43873 -0
- package/dist/style.css +5692 -0
- package/dist/style.css.d.ts +8 -0
- package/package.json +29 -37
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flarecms",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"description": "FlareCMS Monorepo: A lightweight
|
|
5
|
+
"description": "FlareCMS Monorepo: A lightweight CMS for the AI era.",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
@@ -30,8 +30,7 @@
|
|
|
30
30
|
"homepage": "https://flarecms.francy.dev",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build:style": "node ./scripts/prefix-css.mjs",
|
|
33
|
-
"build
|
|
34
|
-
"build:all": "bun run build:style && bun run build:client"
|
|
33
|
+
"build": "bun ../../scripts/build.ts"
|
|
35
34
|
},
|
|
36
35
|
"type": "module",
|
|
37
36
|
"main": "./dist/index.js",
|
|
@@ -42,19 +41,18 @@
|
|
|
42
41
|
".": "./dist/index.js",
|
|
43
42
|
"./server": "./dist/server/index.js",
|
|
44
43
|
"./client": "./dist/client/index.js",
|
|
45
|
-
"./style.css": {
|
|
46
|
-
"types": "./style.css.d.ts",
|
|
47
|
-
"default": "./dist/style.css"
|
|
48
|
-
},
|
|
49
44
|
"./auth": "./dist/auth/index.js",
|
|
50
45
|
"./db": "./dist/db/index.js",
|
|
51
|
-
"./cli": "./dist/cli/index.js"
|
|
46
|
+
"./cli": "./dist/cli/index.js",
|
|
47
|
+
"./plugins": "./dist/plugins/index.js",
|
|
48
|
+
"./style.css": {
|
|
49
|
+
"types": "./dist/style.css.d.ts",
|
|
50
|
+
"default": "./dist/style.css"
|
|
51
|
+
}
|
|
52
52
|
},
|
|
53
|
-
"dependencies": {
|
|
54
|
-
|
|
55
|
-
"@clack/prompts": "^
|
|
56
|
-
"@cloudflare/workers-types": "^4.20241022.0",
|
|
57
|
-
"@fontsource-variable/geist": "^5.2.8",
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@base-ui/react": "^1.0.0-alpha.5",
|
|
55
|
+
"@clack/prompts": "^1.2.0",
|
|
58
56
|
"@nanostores/persistent": "^1.3.3",
|
|
59
57
|
"@nanostores/query": "^0.3.4",
|
|
60
58
|
"@nanostores/react": "^1.1.0",
|
|
@@ -63,11 +61,6 @@
|
|
|
63
61
|
"@oslojs/encoding": "^1.1.0",
|
|
64
62
|
"@simplewebauthn/browser": "^13.3.0",
|
|
65
63
|
"@simplewebauthn/server": "^13.3.0",
|
|
66
|
-
"@tailwindcss/cli": "^4.0.0",
|
|
67
|
-
"@tailwindcss/postcss": "^4.2.2",
|
|
68
|
-
"@tanstack/react-virtual": "^3.13.23",
|
|
69
|
-
"@types/bun": "latest",
|
|
70
|
-
"autoprefixer": "^10.4.27",
|
|
71
64
|
"class-variance-authority": "^0.7.1",
|
|
72
65
|
"clsx": "^2.1.1",
|
|
73
66
|
"fuse.js": "^7.3.0",
|
|
@@ -78,31 +71,30 @@
|
|
|
78
71
|
"nanostores": "^1.2.0",
|
|
79
72
|
"next-themes": "^0.4.6",
|
|
80
73
|
"picocolors": "^1.0.0",
|
|
81
|
-
"postcss": "^8.5.9",
|
|
82
|
-
"postcss-prefix-selector": "^2.1.1",
|
|
83
|
-
"shadcn": "^4.2.0",
|
|
84
74
|
"sonner": "^2.0.7",
|
|
85
75
|
"tailwind-merge": "^3.5.0",
|
|
86
|
-
"tailwindcss": "^4.0.0",
|
|
87
|
-
"tw-animate-css": "^1.4.0",
|
|
88
76
|
"ulidx": "^2.4.1",
|
|
89
77
|
"usehooks-ts": "^3.1.1",
|
|
90
|
-
"zod": "^4.3.6"
|
|
78
|
+
"zod": "^4.3.6",
|
|
79
|
+
"lucide-react": "^1.7.0"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@cloudflare/workers-types": "^4.20241022.0",
|
|
83
|
+
"@fontsource-variable/geist": "^5.2.8",
|
|
84
|
+
"@tailwindcss/cli": "^4.0.0",
|
|
85
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
86
|
+
"@tanstack/react-virtual": "^3.13.23",
|
|
87
|
+
"@types/bun": "latest",
|
|
88
|
+
"@types/node": "^25.6.0",
|
|
89
|
+
"autoprefixer": "^10.4.27",
|
|
90
|
+
"postcss": "^8.5.9",
|
|
91
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
92
|
+
"shadcn": "^4.2.0",
|
|
93
|
+
"tailwindcss": "^4.0.0",
|
|
94
|
+
"tw-animate-css": "^1.4.0"
|
|
91
95
|
},
|
|
92
96
|
"peerDependencies": {
|
|
93
|
-
"@base-ui/react": "^1.3.0",
|
|
94
|
-
"@hono/react-renderer": "^0.1.0",
|
|
95
|
-
"@radix-ui/react-avatar": "^1.1.11",
|
|
96
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
97
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
98
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
99
|
-
"@radix-ui/react-separator": "^1.1.8",
|
|
100
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
101
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
102
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
103
97
|
"hono": "^4.6.0",
|
|
104
|
-
"lucide-react": "^1.7.0",
|
|
105
|
-
"radix-ui": "^1.4.3",
|
|
106
98
|
"react": "^18.3.1",
|
|
107
99
|
"react-dom": "^18.3.1"
|
|
108
100
|
}
|