@cfast/admin 0.0.1
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 +21 -0
- package/README.md +233 -0
- package/dist/index.d.ts +735 -0
- package/dist/index.js +1898 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cfast/admin",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Auto-generated admin UI from your Drizzle schema with role management and impersonation",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/DanielMSchmidt/cfast.git",
|
|
9
|
+
"directory": "packages/admin"
|
|
10
|
+
},
|
|
11
|
+
"type": "module",
|
|
12
|
+
"main": "dist/index.js",
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"sideEffects": false,
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@mui/joy": ">=5.0.0-beta.0",
|
|
29
|
+
"react": ">=19",
|
|
30
|
+
"react-dom": ">=19",
|
|
31
|
+
"react-router": ">=7",
|
|
32
|
+
"drizzle-orm": ">=0.35"
|
|
33
|
+
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"@mui/joy": {
|
|
36
|
+
"optional": true
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@cfast/db": "0.0.1",
|
|
41
|
+
"@cfast/forms": "0.0.1",
|
|
42
|
+
"@cfast/ui": "0.0.1",
|
|
43
|
+
"@cfast/permissions": "0.0.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@emotion/react": "^11.14.0",
|
|
47
|
+
"@emotion/styled": "^11.14.1",
|
|
48
|
+
"@mui/joy": "^5.0.0-beta.52",
|
|
49
|
+
"@types/react": "^19.1.6",
|
|
50
|
+
"@types/react-dom": "^19.1.6",
|
|
51
|
+
"drizzle-orm": "^0.45.1",
|
|
52
|
+
"react": "^19.1.0",
|
|
53
|
+
"react-dom": "^19.1.0",
|
|
54
|
+
"react-router": "^7.12.0",
|
|
55
|
+
"tsup": "^8",
|
|
56
|
+
"typescript": "^5.7",
|
|
57
|
+
"vitest": "^4.1.0"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsup src/index.ts --format esm --dts",
|
|
61
|
+
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"lint": "eslint src/",
|
|
64
|
+
"test": "vitest run"
|
|
65
|
+
}
|
|
66
|
+
}
|