@c-time/frelio-cms 0.1.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.
Binary file
@@ -0,0 +1,12 @@
1
+ <!DOCTYPE html>
2
+ <html lang="ja">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Frelio CMS</title>
7
+ <script type="module" crossorigin src="/admin/assets/index-Dr4qYonI.js"></script>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ </body>
12
+ </html>
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@c-time/frelio-cms",
3
+ "version": "0.1.0",
4
+ "description": "Frelio CMS Admin - pre-built static bundle for 1-repo setup",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/ctime-projects/frelio.git",
9
+ "directory": "apps/cms-admin"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "type": "module",
18
+ "scripts": {
19
+ "dev": "vite",
20
+ "dev:full": "wrangler pages dev --compatibility-date=2024-01-01 -- vite",
21
+ "build": "tsc -b && vite build",
22
+ "build:publish": "cross-env FRELIO_ADMIN_BASE=/admin/ vite build",
23
+ "prepublishOnly": "npm run build:publish",
24
+ "preview": "vite preview",
25
+ "typecheck": "tsc --noEmit",
26
+ "test": "vitest",
27
+ "test:run": "vitest run",
28
+ "test:coverage": "vitest run --coverage"
29
+ },
30
+ "dependencies": {
31
+ "@dnd-kit/core": "^6.3.1",
32
+ "@dnd-kit/sortable": "^10.0.0",
33
+ "@dnd-kit/utilities": "^3.2.2",
34
+ "@emotion/react": "^11.14.0",
35
+ "@emotion/styled": "^11.14.0",
36
+ "@frelio/content-ops": "*",
37
+ "@frelio/types": "*",
38
+ "@hookform/resolvers": "^5.2.2",
39
+ "@monaco-editor/react": "^4.7.0",
40
+ "@mui/icons-material": "^6.4.0",
41
+ "@mui/material": "^6.4.0",
42
+ "@tanstack/react-query": "^5.68.0",
43
+ "@tanstack/react-router": "^1.114.0",
44
+ "react": "^19.0.0",
45
+ "react-dom": "^19.0.0",
46
+ "react-hook-form": "^7.71.2",
47
+ "zod": "^3.23.8",
48
+ "zustand": "^5.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "@tanstack/router-plugin": "^1.114.0",
52
+ "@types/react": "^19.0.0",
53
+ "@types/react-dom": "^19.0.0",
54
+ "@vitejs/plugin-react": "^4.4.0",
55
+ "@vitest/coverage-v8": "^4.0.18",
56
+ "typescript": "^5.7.0",
57
+ "vite": "^6.2.0",
58
+ "vitest": "^4.0.18",
59
+ "cross-env": "^7.0.0",
60
+ "wrangler": "^3.99.0"
61
+ }
62
+ }