sa2kit 1.6.12 → 1.6.13
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.d.mts +50 -1
- package/dist/mmd/index.d.ts +50 -1
- package/dist/mmd/index.js +882 -510
- package/dist/mmd/index.js.map +1 -1
- package/dist/mmd/index.mjs +680 -311
- package/dist/mmd/index.mjs.map +1 -1
- package/package.json +18 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sa2kit",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.13",
|
|
4
4
|
"description": "A modern, type-safe React utility library with cross-platform support and platform adapters",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -255,23 +255,6 @@
|
|
|
255
255
|
"README.md",
|
|
256
256
|
"LICENSE"
|
|
257
257
|
],
|
|
258
|
-
"scripts": {
|
|
259
|
-
"dev": "NODE_OPTIONS='--max-old-space-size=8192' tsup --watch",
|
|
260
|
-
"build": "NODE_OPTIONS='--max-old-space-size=8192' tsup",
|
|
261
|
-
"type-check": "tsc --noEmit",
|
|
262
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
263
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
264
|
-
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
265
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
266
|
-
"test": "vitest run",
|
|
267
|
-
"test:watch": "vitest",
|
|
268
|
-
"test:ui": "vitest --ui",
|
|
269
|
-
"test:coverage": "vitest --coverage",
|
|
270
|
-
"clean": "rm -rf dist",
|
|
271
|
-
"prepublishOnly": "pnpm run build && pnpm run test",
|
|
272
|
-
"publish:beta": "npm publish --tag beta --access public",
|
|
273
|
-
"publish:latest": "npm publish --access public"
|
|
274
|
-
},
|
|
275
258
|
"peerDependencies": {
|
|
276
259
|
"@imgly/background-removal": "^1.7.0",
|
|
277
260
|
"@xenova/transformers": "^2.17.2",
|
|
@@ -356,7 +339,6 @@
|
|
|
356
339
|
"engines": {
|
|
357
340
|
"node": ">=18.0.0"
|
|
358
341
|
},
|
|
359
|
-
"packageManager": "pnpm@9.15.2",
|
|
360
342
|
"dependencies": {
|
|
361
343
|
"@dnd-kit/core": "^6.3.1",
|
|
362
344
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -375,5 +357,21 @@
|
|
|
375
357
|
"three-stdlib": "^2.36.0",
|
|
376
358
|
"uuid": "^13.0.0",
|
|
377
359
|
"xlsx": "^0.18.5"
|
|
360
|
+
},
|
|
361
|
+
"scripts": {
|
|
362
|
+
"dev": "NODE_OPTIONS='--max-old-space-size=8192' tsup --watch",
|
|
363
|
+
"build": "NODE_OPTIONS='--max-old-space-size=8192' tsup",
|
|
364
|
+
"type-check": "tsc --noEmit",
|
|
365
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
366
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
367
|
+
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
368
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
|
|
369
|
+
"test": "vitest run",
|
|
370
|
+
"test:watch": "vitest",
|
|
371
|
+
"test:ui": "vitest --ui",
|
|
372
|
+
"test:coverage": "vitest --coverage",
|
|
373
|
+
"clean": "rm -rf dist",
|
|
374
|
+
"publish:beta": "npm publish --tag beta --access public",
|
|
375
|
+
"publish:latest": "npm publish --access public"
|
|
378
376
|
}
|
|
379
|
-
}
|
|
377
|
+
}
|