@superblocksteam/library 2.0.75-next.3 → 2.0.75
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-Dp_WgQK7.js → jsx-wrapper-DpoYDtf8.js} +2 -1
- package/dist/{jsx-wrapper-Dp_WgQK7.js.map → jsx-wrapper-DpoYDtf8.js.map} +1 -1
- package/dist/lib/index.d.ts +1 -177
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js +46 -318
- package/dist/lib/index.js.map +1 -1
- package/package.json +11 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/library",
|
|
3
|
-
"version": "2.0.75
|
|
3
|
+
"version": "2.0.75",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"tinycolor2": "^1.6.0",
|
|
87
87
|
"use-debounce": "^10.0.4",
|
|
88
88
|
"yaml": "^2.7.0",
|
|
89
|
-
"@superblocksteam/library-shared": "2.0.75
|
|
89
|
+
"@superblocksteam/library-shared": "2.0.75"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
92
|
"@eslint/js": "^9.39.1",
|
|
@@ -105,7 +105,6 @@
|
|
|
105
105
|
"@types/tinycolor2": "^1.4.6",
|
|
106
106
|
"@vitejs/plugin-react": "^5.0.4",
|
|
107
107
|
"@vitest/browser": "^4.0.0",
|
|
108
|
-
"@vitest/coverage-v8": "^4.0.16",
|
|
109
108
|
"@vitest/eslint-plugin": "^1.5.1",
|
|
110
109
|
"@vitest/ui": "^4.0.0",
|
|
111
110
|
"eslint": "^9.39.1",
|
|
@@ -136,14 +135,21 @@
|
|
|
136
135
|
"sideEffects": [
|
|
137
136
|
"dist*/*.css"
|
|
138
137
|
],
|
|
138
|
+
"lint-staged": {
|
|
139
|
+
"**/*": [
|
|
140
|
+
"prettier --write --ignore-unknown",
|
|
141
|
+
"eslint --fix",
|
|
142
|
+
"vitest related --run"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
139
145
|
"scripts": {
|
|
140
146
|
"build": "MODE=production tsdown",
|
|
141
147
|
"check": "npm run typecheck && npm run lint",
|
|
142
148
|
"clean": "premove dist* tsconfig.tsbuildinfo",
|
|
143
149
|
"dev": "MODE=local-dev tsdown --watch --no-clean",
|
|
144
150
|
"kebabify": "./scripts/kebabify.ts",
|
|
145
|
-
"lint": "eslint --max-warnings 0 --concurrency=
|
|
146
|
-
"lint:fix": "eslint --fix --concurrency=
|
|
151
|
+
"lint": "eslint --max-warnings 0 --concurrency=auto",
|
|
152
|
+
"lint:fix": "eslint --fix --concurrency=auto",
|
|
147
153
|
"preview": "vite preview",
|
|
148
154
|
"publish-package": "pnpm publish",
|
|
149
155
|
"test": "vitest run",
|