@nextsparkjs/core 0.1.0-beta.70 → 0.1.0-beta.72
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/package.json +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nextsparkjs/core",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.72",
|
|
4
4
|
"description": "NextSpark - The complete SaaS framework for Next.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "NextSpark <hello@nextspark.dev>",
|
|
@@ -296,6 +296,17 @@
|
|
|
296
296
|
"README.md",
|
|
297
297
|
"scripts"
|
|
298
298
|
],
|
|
299
|
+
"scripts": {
|
|
300
|
+
"postinstall": "node scripts/postinstall.mjs || true",
|
|
301
|
+
"build": "tsup && pnpm build:dts && pnpm build:ui-css",
|
|
302
|
+
"build:js": "tsup",
|
|
303
|
+
"build:dts": "tsc -p tsconfig.dts.json || echo '⚠️ DTS generation completed with some type errors (partial coverage)'",
|
|
304
|
+
"build:ui-css": "node scripts/build/build-ui-css.mjs",
|
|
305
|
+
"dev": "tsup --watch",
|
|
306
|
+
"test": "jest",
|
|
307
|
+
"test:watch": "jest --watch",
|
|
308
|
+
"test:coverage": "jest --coverage"
|
|
309
|
+
},
|
|
299
310
|
"peerDependencies": {
|
|
300
311
|
"next": ">=14.0.0",
|
|
301
312
|
"react": ">=18.0.0",
|
|
@@ -391,16 +402,5 @@
|
|
|
391
402
|
"tailwind-merge": "^3.3.1",
|
|
392
403
|
"uuid": "^13.0.0",
|
|
393
404
|
"zod": "^4.1.5"
|
|
394
|
-
},
|
|
395
|
-
"scripts": {
|
|
396
|
-
"postinstall": "node scripts/postinstall.mjs || true",
|
|
397
|
-
"build": "tsup && pnpm build:dts && pnpm build:ui-css",
|
|
398
|
-
"build:js": "tsup",
|
|
399
|
-
"build:dts": "tsc -p tsconfig.dts.json || echo '⚠️ DTS generation completed with some type errors (partial coverage)'",
|
|
400
|
-
"build:ui-css": "node scripts/build/build-ui-css.mjs",
|
|
401
|
-
"dev": "tsup --watch",
|
|
402
|
-
"test": "jest",
|
|
403
|
-
"test:watch": "jest --watch",
|
|
404
|
-
"test:coverage": "jest --coverage"
|
|
405
405
|
}
|
|
406
|
-
}
|
|
406
|
+
}
|