@wordrhyme/auto-crud 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 +21 -0
- package/README.md +724 -0
- package/dist/index.cjs +6065 -0
- package/dist/index.d.cts +1165 -0
- package/dist/index.d.ts +1165 -0
- package/dist/index.js +5985 -0
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wordrhyme/auto-crud",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.2.0",
|
|
5
|
+
"description": "Schema-first CRUD components with auto-generated tables and forms",
|
|
6
|
+
"author": "wordrhyme",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/pixpilot/shadcn-components.git",
|
|
11
|
+
"directory": "packages/auto-crud"
|
|
12
|
+
},
|
|
13
|
+
"main": "./dist/index.cjs",
|
|
14
|
+
"module": "./dist/index.js",
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.js",
|
|
20
|
+
"require": "./dist/index.cjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
31
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
32
|
+
"sonner": "^2.0.0",
|
|
33
|
+
"zod": "^3.0.0 || ^4.0.0"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@dnd-kit/core": "^6.3.1",
|
|
37
|
+
"@dnd-kit/modifiers": "^9.0.0",
|
|
38
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
39
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
40
|
+
"@formily/core": "^2.3.7",
|
|
41
|
+
"@formily/json-schema": "^2.3.7",
|
|
42
|
+
"@formily/react": "^2.3.7",
|
|
43
|
+
"@formily/reactive": "^2.3.7",
|
|
44
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
45
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
46
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
47
|
+
"@radix-ui/react-direction": "^1.1.1",
|
|
48
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
49
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
50
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
51
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
52
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
53
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
54
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
55
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
56
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
57
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
58
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
59
|
+
"@tanstack/react-table": "^8.21.3",
|
|
60
|
+
"@tanstack/react-virtual": "^3.13.18",
|
|
61
|
+
"class-variance-authority": "^0.7.1",
|
|
62
|
+
"clsx": "^2.1.1",
|
|
63
|
+
"cmdk": "^1.1.1",
|
|
64
|
+
"lucide-react": "0.553.0",
|
|
65
|
+
"nanoid": "^5.1.6",
|
|
66
|
+
"tailwind-merge": "^3.4.0",
|
|
67
|
+
"vaul": "^1.1.2",
|
|
68
|
+
"@pixpilot/formily-shadcn": "0.44.3",
|
|
69
|
+
"@pixpilot/shadcn": "0.9.0",
|
|
70
|
+
"@pixpilot/shadcn-ui": "0.47.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@tanstack/react-query": "^5.90.15",
|
|
74
|
+
"@trpc/server": "^11.0.0",
|
|
75
|
+
"@types/node": "^22.19.3",
|
|
76
|
+
"@types/react": "^19.2.7",
|
|
77
|
+
"@types/react-dom": "^19.2.3",
|
|
78
|
+
"drizzle-orm": "^0.45.1",
|
|
79
|
+
"eslint": "^9.39.2",
|
|
80
|
+
"react": "19.2.4",
|
|
81
|
+
"react-dom": "19.2.4",
|
|
82
|
+
"tsdown": "^0.15.12",
|
|
83
|
+
"typescript": "^5.9.3",
|
|
84
|
+
"@internal/eslint-config": "0.3.0",
|
|
85
|
+
"@internal/prettier-config": "0.0.1",
|
|
86
|
+
"@internal/tsdown-config": "0.1.0",
|
|
87
|
+
"@internal/tsconfig": "0.1.0",
|
|
88
|
+
"@internal/vitest-config": "0.1.0"
|
|
89
|
+
},
|
|
90
|
+
"prettier": "@internal/prettier-config",
|
|
91
|
+
"scripts": {
|
|
92
|
+
"clean": "git clean -xdf .cache .turbo dist",
|
|
93
|
+
"clean:all": "git clean -xdf .cache .turbo dist node_modules",
|
|
94
|
+
"build": "tsdown",
|
|
95
|
+
"build:watch": "tsdown --watch",
|
|
96
|
+
"test": "vitest --run --passWithNoTests",
|
|
97
|
+
"test:watch": "vitest --watch",
|
|
98
|
+
"test:ui": "vitest --ui",
|
|
99
|
+
"test:coverage": "vitest --coverage",
|
|
100
|
+
"typecheck": "tsc --noEmit",
|
|
101
|
+
"lint": "eslint",
|
|
102
|
+
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore"
|
|
103
|
+
}
|
|
104
|
+
}
|