@plyaz/core 1.3.0 → 1.3.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/dist/entry-backend.js +32894 -370
- package/dist/entry-backend.js.map +1 -1
- package/dist/entry-frontend.js +32789 -293
- package/dist/entry-frontend.js.map +1 -1
- package/dist/index.js +32888 -364
- package/dist/index.js.map +1 -1
- package/dist/init/nestjs/index.js +32766 -270
- package/dist/init/nestjs/index.js.map +1 -1
- package/package.json +28 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plyaz/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Shared core logic and utilities for Plyaz apps, services, and future SDKs – centralized, reusable, and scalable.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [],
|
|
@@ -45,35 +45,34 @@
|
|
|
45
45
|
"dist"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@nestjs/common": "^11.1.3",
|
|
49
|
-
"@nestjs/core": "^11.1.6",
|
|
50
|
-
"@nestjs/platform-express": "^11.1.9",
|
|
51
48
|
"@plyaz/api": "^1.5.5",
|
|
52
49
|
"@plyaz/config": "^1.9.0",
|
|
53
|
-
"@plyaz/db": "^0.5.0",
|
|
54
50
|
"@plyaz/errors": "^1.5.1",
|
|
55
51
|
"@plyaz/logger": "^1.4.1",
|
|
56
|
-
"@plyaz/notifications": "^1.0.1",
|
|
57
|
-
"@plyaz/storage": "^1.0.1",
|
|
58
52
|
"@plyaz/store": "^1.1.3",
|
|
59
53
|
"@plyaz/translations": "^1.4.5",
|
|
60
54
|
"@plyaz/types": "^1.24.0",
|
|
55
|
+
"dotenv": "^17.2.3",
|
|
56
|
+
"fetchff": "^4.1.0",
|
|
57
|
+
"react": "^19.2.0",
|
|
58
|
+
"react-dom": "^19.2.0",
|
|
59
|
+
"yaml": "^2.8.0",
|
|
60
|
+
"zod": "4.1.5",
|
|
61
|
+
"zustand": "^5.0.9"
|
|
62
|
+
},
|
|
63
|
+
"optionalDependencies": {
|
|
64
|
+
"@nestjs/common": "^11.1.3",
|
|
65
|
+
"@nestjs/core": "^11.1.6",
|
|
66
|
+
"@nestjs/platform-express": "^11.1.9",
|
|
61
67
|
"@supabase/supabase-js": "^2.79.0",
|
|
62
68
|
"dd-trace": "^5.80.0",
|
|
63
|
-
"dotenv": "^17.2.3",
|
|
64
69
|
"drizzle-orm": "^0.36.4",
|
|
65
|
-
"fetchff": "^4.1.0",
|
|
66
70
|
"hot-shots": "^11.4.0",
|
|
67
71
|
"ioredis": "^5.6.1",
|
|
68
72
|
"next": "15.4.7",
|
|
69
73
|
"postgres": "^3.4.7",
|
|
70
|
-
"react": "^19.2.0",
|
|
71
|
-
"react-dom": "^19.2.0",
|
|
72
74
|
"rxjs": "^7.8.2",
|
|
73
|
-
"viem": "^2.31.7"
|
|
74
|
-
"yaml": "^2.8.0",
|
|
75
|
-
"zod": "4.1.5",
|
|
76
|
-
"zustand": "^5.0.9"
|
|
75
|
+
"viem": "^2.31.7"
|
|
77
76
|
},
|
|
78
77
|
"devDependencies": {
|
|
79
78
|
"@changesets/cli": "^2.29.5",
|
|
@@ -147,6 +146,11 @@
|
|
|
147
146
|
"typescript-transform-paths": "^3.5.5",
|
|
148
147
|
"vitest": "3.2.4"
|
|
149
148
|
},
|
|
149
|
+
"peerDependencies": {
|
|
150
|
+
"@plyaz/db": "^0.5.0",
|
|
151
|
+
"@plyaz/storage": "^1.0.1",
|
|
152
|
+
"@plyaz/notifications": "^1.0.1"
|
|
153
|
+
},
|
|
150
154
|
"peerDependenciesMeta": {
|
|
151
155
|
"react": {
|
|
152
156
|
"optional": true
|
|
@@ -156,6 +160,15 @@
|
|
|
156
160
|
},
|
|
157
161
|
"next": {
|
|
158
162
|
"optional": true
|
|
163
|
+
},
|
|
164
|
+
"@plyaz/db": {
|
|
165
|
+
"optional": true
|
|
166
|
+
},
|
|
167
|
+
"@plyaz/storage": {
|
|
168
|
+
"optional": true
|
|
169
|
+
},
|
|
170
|
+
"@plyaz/notifications": {
|
|
171
|
+
"optional": true
|
|
159
172
|
}
|
|
160
173
|
},
|
|
161
174
|
"scripts": {
|