sa2kit 1.0.2 → 1.0.4
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/mmd/index.js +46 -2
- package/dist/mmd/index.js.map +1 -1
- package/dist/mmd/index.mjs +46 -2
- package/dist/mmd/index.mjs.map +1 -1
- package/package.json +20 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sa2kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A modern, type-safe React utility library with cross-platform support and platform adapters",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -172,6 +172,23 @@
|
|
|
172
172
|
"README.md",
|
|
173
173
|
"LICENSE"
|
|
174
174
|
],
|
|
175
|
+
"scripts": {
|
|
176
|
+
"dev": "NODE_OPTIONS='--max-old-space-size=4096' tsup --watch",
|
|
177
|
+
"build": "NODE_OPTIONS='--max-old-space-size=4096' tsup",
|
|
178
|
+
"type-check": "tsc --noEmit",
|
|
179
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
180
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
181
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
182
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
183
|
+
"test": "vitest run",
|
|
184
|
+
"test:watch": "vitest",
|
|
185
|
+
"test:ui": "vitest --ui",
|
|
186
|
+
"test:coverage": "vitest --coverage",
|
|
187
|
+
"clean": "rm -rf dist",
|
|
188
|
+
"prepublishOnly": "pnpm run build && pnpm run test",
|
|
189
|
+
"publish:beta": "npm publish --tag beta --access public",
|
|
190
|
+
"publish:latest": "npm publish --access public"
|
|
191
|
+
},
|
|
175
192
|
"peerDependencies": {
|
|
176
193
|
"lucide-react": "^0.263.0 || ^0.300.0 || ^0.400.0 || ^0.500.0",
|
|
177
194
|
"react": ">=18.0.0",
|
|
@@ -216,6 +233,7 @@
|
|
|
216
233
|
"engines": {
|
|
217
234
|
"node": ">=18.0.0"
|
|
218
235
|
},
|
|
236
|
+
"packageManager": "pnpm@9.15.2",
|
|
219
237
|
"dependencies": {
|
|
220
238
|
"bcryptjs": "^3.0.3",
|
|
221
239
|
"jsonwebtoken": "^9.0.2",
|
|
@@ -224,21 +242,5 @@
|
|
|
224
242
|
"three-stdlib": "^2.36.0",
|
|
225
243
|
"uuid": "^13.0.0",
|
|
226
244
|
"xlsx": "^0.18.5"
|
|
227
|
-
},
|
|
228
|
-
"scripts": {
|
|
229
|
-
"dev": "NODE_OPTIONS='--max-old-space-size=4096' tsup --watch",
|
|
230
|
-
"build": "NODE_OPTIONS='--max-old-space-size=4096' tsup",
|
|
231
|
-
"type-check": "tsc --noEmit",
|
|
232
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
233
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
234
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
235
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
236
|
-
"test": "vitest run",
|
|
237
|
-
"test:watch": "vitest",
|
|
238
|
-
"test:ui": "vitest --ui",
|
|
239
|
-
"test:coverage": "vitest --coverage",
|
|
240
|
-
"clean": "rm -rf dist",
|
|
241
|
-
"publish:beta": "npm publish --tag beta --access public",
|
|
242
|
-
"publish:latest": "npm publish --access public"
|
|
243
245
|
}
|
|
244
|
-
}
|
|
246
|
+
}
|