forlogic-core 1.0.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/README.md +1238 -0
- package/dist/index.esm.js +11 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "forlogic-core",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build": "vite build",
|
|
14
|
+
"build:dev": "vite build --mode development",
|
|
15
|
+
"build:lib": "rollup -c",
|
|
16
|
+
"lint": "eslint .",
|
|
17
|
+
"preview": "vite preview"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@hookform/resolvers": "^3.10.0",
|
|
21
|
+
"@radix-ui/react-accordion": "^1.2.11",
|
|
22
|
+
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
23
|
+
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
24
|
+
"@radix-ui/react-collapsible": "^1.1.11",
|
|
25
|
+
"@radix-ui/react-dialog": "^1.1.14",
|
|
26
|
+
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
27
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
28
|
+
"@radix-ui/react-popover": "^1.1.14",
|
|
29
|
+
"@radix-ui/react-radio-group": "^1.3.7",
|
|
30
|
+
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
31
|
+
"@radix-ui/react-select": "^2.2.5",
|
|
32
|
+
"@radix-ui/react-separator": "^1.1.7",
|
|
33
|
+
"@radix-ui/react-slider": "^1.3.5",
|
|
34
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
35
|
+
"@radix-ui/react-tabs": "^1.1.12",
|
|
36
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
37
|
+
"@radix-ui/react-toggle": "^1.1.9",
|
|
38
|
+
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
39
|
+
"@radix-ui/react-tooltip": "^1.2.7",
|
|
40
|
+
"@rollup/plugin-commonjs": "^28.0.6",
|
|
41
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
42
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
43
|
+
"@supabase/supabase-js": "^2.57.2",
|
|
44
|
+
"@tanstack/react-query": "^5.83.0",
|
|
45
|
+
"class-variance-authority": "^0.7.1",
|
|
46
|
+
"clsx": "^2.1.1",
|
|
47
|
+
"date-fns": "^3.6.0",
|
|
48
|
+
"embla-carousel-react": "^8.6.0",
|
|
49
|
+
"input-otp": "^1.4.2",
|
|
50
|
+
"lucide-react": "^0.462.0",
|
|
51
|
+
"next-themes": "^0.3.0",
|
|
52
|
+
"react": "^18.3.1",
|
|
53
|
+
"react-day-picker": "^8.10.1",
|
|
54
|
+
"react-dom": "^18.3.1",
|
|
55
|
+
"react-hook-form": "^7.61.1",
|
|
56
|
+
"react-resizable-panels": "^2.1.9",
|
|
57
|
+
"react-router-dom": "^6.30.1",
|
|
58
|
+
"recharts": "^2.15.4",
|
|
59
|
+
"rollup": "^4.50.1",
|
|
60
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
61
|
+
"sonner": "^1.7.4",
|
|
62
|
+
"tailwind-merge": "^2.6.0",
|
|
63
|
+
"tailwindcss-animate": "^1.0.7",
|
|
64
|
+
"vaul": "^0.9.9",
|
|
65
|
+
"zod": "^3.25.76"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@eslint/js": "^9.32.0",
|
|
69
|
+
"@rollup/plugin-typescript": "^12.1.4",
|
|
70
|
+
"@tailwindcss/typography": "^0.5.16",
|
|
71
|
+
"@types/node": "^22.16.5",
|
|
72
|
+
"@types/react": "^18.3.23",
|
|
73
|
+
"@types/react-dom": "^18.3.7",
|
|
74
|
+
"@vitejs/plugin-react-swc": "^3.11.0",
|
|
75
|
+
"autoprefixer": "^10.4.21",
|
|
76
|
+
"eslint": "^9.32.0",
|
|
77
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
78
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
79
|
+
"globals": "^15.15.0",
|
|
80
|
+
"lovable-tagger": "^1.1.9",
|
|
81
|
+
"postcss": "^8.5.6",
|
|
82
|
+
"rollup-plugin-esbuild": "^6.2.1",
|
|
83
|
+
"tailwindcss": "^3.4.17",
|
|
84
|
+
"typescript": "^5.8.3",
|
|
85
|
+
"typescript-eslint": "^8.38.0",
|
|
86
|
+
"vite": "^5.4.19"
|
|
87
|
+
}
|
|
88
|
+
}
|