@superblocksteam/library 2.0.93 → 2.0.94-next.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/jsx-dev-runtime/index.js +1 -1
- package/dist/{jsx-wrapper-C8LEtdzp.js → jsx-wrapper-DdcywsRY.js} +189 -9
- package/dist/jsx-wrapper-DdcywsRY.js.map +1 -0
- package/dist/lib/index.d.ts +96 -30
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +188 -31
- package/dist/lib/index.js.map +1 -1
- package/package.json +17 -18
- package/dist/jsx-wrapper-C8LEtdzp.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/library",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.94-next.1",
|
|
4
|
+
"files": [
|
|
5
|
+
"dist"
|
|
6
|
+
],
|
|
4
7
|
"type": "module",
|
|
8
|
+
"sideEffects": [
|
|
9
|
+
"dist*/*.css"
|
|
10
|
+
],
|
|
5
11
|
"exports": {
|
|
6
12
|
".": {
|
|
7
13
|
"types": "./dist/lib/index.d.ts",
|
|
@@ -18,13 +24,8 @@
|
|
|
18
24
|
"./package.json": "./package.json",
|
|
19
25
|
"./index.css": "./dist/lib/index.css"
|
|
20
26
|
},
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
],
|
|
24
|
-
"peerDependencies": {
|
|
25
|
-
"react": ">=18",
|
|
26
|
-
"react-dom": ">=18",
|
|
27
|
-
"react-router": "7.x"
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"registry": "https://registry.npmjs.org"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@dagrejs/graphlib": "2.2.4",
|
|
@@ -61,9 +62,9 @@
|
|
|
61
62
|
"stylis": "^4.2.0",
|
|
62
63
|
"tailwindcss": "^4.1.13",
|
|
63
64
|
"zod-to-json-schema": "^3.25.1",
|
|
64
|
-
"@superblocksteam/sdk-api": "2.0.
|
|
65
|
-
"@superblocksteam/library-shared": "2.0.
|
|
66
|
-
"@superblocksteam/shared": "0.
|
|
65
|
+
"@superblocksteam/sdk-api": "2.0.94-next.1",
|
|
66
|
+
"@superblocksteam/library-shared": "2.0.94-next.1",
|
|
67
|
+
"@superblocksteam/shared": "0.9567.1"
|
|
67
68
|
},
|
|
68
69
|
"devDependencies": {
|
|
69
70
|
"@eslint/js": "^9.39.2",
|
|
@@ -80,16 +81,15 @@
|
|
|
80
81
|
"@vitest/eslint-plugin": "^1.6.7",
|
|
81
82
|
"@vitest/ui": "^4.0.17",
|
|
82
83
|
"eslint": "^9.39.2",
|
|
84
|
+
"eslint-config-prettier": "^10.1.8",
|
|
83
85
|
"eslint-config-turbo": "^2.8.3",
|
|
84
86
|
"eslint-plugin-import": "^2.32.0",
|
|
85
|
-
"eslint-plugin-prettier": "^5.5.5",
|
|
86
87
|
"eslint-plugin-react": "^7.37.5",
|
|
87
88
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
88
89
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
89
90
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
90
91
|
"globals": "^17.3.0",
|
|
91
92
|
"jsdom": "^26.1.0",
|
|
92
|
-
"prettier": "^3.7.4",
|
|
93
93
|
"react-router": "^7.9.4",
|
|
94
94
|
"ts-morph": "^25.0.0",
|
|
95
95
|
"tsdown": "^0.19.0",
|
|
@@ -98,12 +98,11 @@
|
|
|
98
98
|
"typescript-eslint": "^8.54.0",
|
|
99
99
|
"vitest": "^4.0.17"
|
|
100
100
|
},
|
|
101
|
-
"
|
|
102
|
-
"
|
|
101
|
+
"peerDependencies": {
|
|
102
|
+
"react": ">=18",
|
|
103
|
+
"react-dom": ">=18",
|
|
104
|
+
"react-router": "7.x"
|
|
103
105
|
},
|
|
104
|
-
"sideEffects": [
|
|
105
|
-
"dist*/*.css"
|
|
106
|
-
],
|
|
107
106
|
"scripts": {
|
|
108
107
|
"build": "MODE=production tsdown",
|
|
109
108
|
"check": "npm run typecheck && npm run lint",
|