@digilogiclabs/saas-factory-ui 2.7.1 → 2.8.0
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/index.d.mts +17 -4
- package/dist/index.d.ts +17 -4
- package/dist/index.js +61 -51
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +61 -51
- package/dist/index.mjs.map +1 -1
- package/dist/web/index.d.mts +17 -4
- package/dist/web/index.d.ts +17 -4
- package/dist/web/index.js +61 -51
- package/dist/web/index.js.map +1 -1
- package/dist/web/index.mjs +61 -51
- package/dist/web/index.mjs.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digilogiclabs/saas-factory-ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Cross-platform UI component library built for both Next.js web applications and React Native/Expo mobile applications",
|
|
6
6
|
"keywords": [
|
|
@@ -68,6 +68,21 @@
|
|
|
68
68
|
"sideEffects": [
|
|
69
69
|
"**/*.css"
|
|
70
70
|
],
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "NODE_OPTIONS=--max-old-space-size=24576 tsup",
|
|
73
|
+
"dev": "tsup --watch",
|
|
74
|
+
"test": "jest --passWithNoTests",
|
|
75
|
+
"test:watch": "jest --watch",
|
|
76
|
+
"lint": "eslint src",
|
|
77
|
+
"lint:fix": "eslint src --fix",
|
|
78
|
+
"type-check": "tsc --noEmit --skipLibCheck",
|
|
79
|
+
"clean": "rimraf dist",
|
|
80
|
+
"changeset": "changeset",
|
|
81
|
+
"version-packages": "changeset version",
|
|
82
|
+
"release": "npm run build && changeset publish",
|
|
83
|
+
"storybook": "storybook dev -p 6006",
|
|
84
|
+
"build-storybook": "storybook build"
|
|
85
|
+
},
|
|
71
86
|
"dependencies": {
|
|
72
87
|
"@headlessui/react": "^2.0.0",
|
|
73
88
|
"@heroicons/react": "^2.1.1",
|
|
@@ -186,20 +201,5 @@
|
|
|
186
201
|
"engines": {
|
|
187
202
|
"node": ">=18.0.0",
|
|
188
203
|
"npm": ">=9.0.0"
|
|
189
|
-
},
|
|
190
|
-
"scripts": {
|
|
191
|
-
"build": "NODE_OPTIONS=--max-old-space-size=24576 tsup",
|
|
192
|
-
"dev": "tsup --watch",
|
|
193
|
-
"test": "jest --passWithNoTests",
|
|
194
|
-
"test:watch": "jest --watch",
|
|
195
|
-
"lint": "eslint src",
|
|
196
|
-
"lint:fix": "eslint src --fix",
|
|
197
|
-
"type-check": "tsc --noEmit --skipLibCheck",
|
|
198
|
-
"clean": "rimraf dist",
|
|
199
|
-
"changeset": "changeset",
|
|
200
|
-
"version-packages": "changeset version",
|
|
201
|
-
"release": "npm run build && changeset publish",
|
|
202
|
-
"storybook": "storybook dev -p 6006",
|
|
203
|
-
"build-storybook": "storybook build"
|
|
204
204
|
}
|
|
205
|
-
}
|
|
205
|
+
}
|