@pelatform/starter 0.2.2 → 0.2.3

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/dist/extend.d.ts CHANGED
@@ -1,8 +1,9 @@
1
+ export * from 'pelatform-ui';
1
2
  export * from '@pelatform/starter.config';
2
3
  export * from '@pelatform/starter.utils';
3
4
  export * from '@pelatform/starter.shared/extend';
4
- export * from '@pelatform/starter.workspace/extend';
5
5
  import '@pelatform/starter.account';
6
+ import '@pelatform/starter.admin';
6
7
  import '@pelatform/starter.apikey';
7
8
  import '@pelatform/starter.auth';
8
9
  import '@pelatform/starter.hook';
package/dist/extend.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/extend.ts
2
+ export * from "pelatform-ui";
2
3
  export * from "@pelatform/starter.config";
3
4
  export * from "@pelatform/starter.utils";
4
5
  export * from "@pelatform/starter.shared/extend";
5
- export * from "@pelatform/starter.workspace/extend";
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export * from '@pelatform/starter.account';
2
+ export * from '@pelatform/starter.admin';
2
3
  export * from '@pelatform/starter.apikey';
3
4
  export * from '@pelatform/starter.auth';
4
5
  export * from '@pelatform/starter.hook';
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  // src/index.ts
2
2
  export * from "@pelatform/starter.account";
3
+ export * from "@pelatform/starter.admin";
3
4
  export * from "@pelatform/starter.apikey";
4
5
  export * from "@pelatform/starter.auth";
5
6
  export * from "@pelatform/starter.hook";
package/dist/style.css CHANGED
@@ -1,4 +1,5 @@
1
1
  @import "@pelatform/starter.account/css";
2
+ @import "@pelatform/starter.admin/css";
2
3
  @import "@pelatform/starter.apikey/css";
3
4
  @import "@pelatform/starter.auth/css";
4
5
  @import "@pelatform/starter.shared/css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pelatform/starter",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A collection of SaaS starter kit components and utilities for Pelatform applications.",
5
5
  "author": "Pelatform",
6
6
  "license": "MIT",
@@ -39,48 +39,38 @@
39
39
  "components",
40
40
  "utilities"
41
41
  ],
42
- "devDependencies": {
43
- "@better-fetch/fetch": "^1.1.21",
44
- "@hookform/resolvers": "^5.2.2",
45
- "@pelatform/starter.account": "0.2.2",
46
- "@pelatform/starter.apikey": "0.2.2",
47
- "@pelatform/starter.auth": "0.2.2",
42
+ "dependencies": {
43
+ "@pelatform/starter.account": "0.2.3",
44
+ "@pelatform/starter.admin": "0.1.0",
45
+ "@pelatform/starter.apikey": "0.2.3",
46
+ "@pelatform/starter.auth": "0.2.3",
48
47
  "@pelatform/starter.config": "0.2.1",
49
48
  "@pelatform/starter.hook": "0.2.1",
50
- "@pelatform/starter.shared": "0.2.2",
51
- "@pelatform/starter.utils": "0.2.1",
52
- "@pelatform/starter.workspace": "0.2.2",
49
+ "@pelatform/starter.shared": "0.2.3",
50
+ "@pelatform/starter.utils": "0.2.2",
51
+ "@pelatform/starter.workspace": "0.2.3"
52
+ },
53
+ "devDependencies": {
53
54
  "@pelatform/tsconfig": "^0.1.3",
54
55
  "@types/react": "^19.2.7",
55
- "better-auth": "^1.4.6",
56
- "lucide-react": "^0.559.0",
57
- "next": "^16.0.8",
58
- "next-intl": "^4.5.8",
59
- "pelatform-ui": "^1.1.3",
60
- "react": "^19.2.1",
61
- "react-hook-form": "^7.68.0",
62
- "tsup": "^8.5.1",
63
- "zod": "^4.1.13"
56
+ "next": "^16.0.10",
57
+ "react": "^19.2.3",
58
+ "react-dom": "^19.2.3",
59
+ "tsup": "^8.5.1"
64
60
  },
65
61
  "peerDependencies": {
66
62
  "@better-fetch/fetch": ">=1.1.0",
67
63
  "@hookform/resolvers": ">=5.2.0",
68
- "@pelatform/starter.account": ">=0.2.0",
69
- "@pelatform/starter.apikey": ">=0.2.0",
70
- "@pelatform/starter.auth": ">=0.2.0",
71
- "@pelatform/starter.config": ">=0.2.0",
72
- "@pelatform/starter.hook": ">=0.2.0",
73
- "@pelatform/starter.shared": ">=0.2.0",
74
- "@pelatform/starter.utils": ">=0.2.0",
75
- "@pelatform/starter.workspace": ">=0.2.0",
76
64
  "@tanstack/query-core": ">=5.90.0",
77
65
  "@tanstack/react-query": ">=5.90.0",
66
+ "@tanstack/react-table": ">=8.2.0",
78
67
  "better-auth": ">=1.4.5",
79
68
  "lucide-react": ">=0.55.0",
80
69
  "next": ">=16.0.0",
81
70
  "next-intl": ">=4.5.0",
82
71
  "pelatform-ui": ">=1.1.0",
83
72
  "react": ">=18.0.0 || >=19.0.0-rc.0",
73
+ "react-dom": ">=18 || >=19.0.0-rc.0",
84
74
  "react-hook-form": ">=7.5.0",
85
75
  "tailwindcss": ">=3.0.0",
86
76
  "zod": ">=4.1.0"