@saasmakers/ui 0.1.24 → 0.1.26

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.
@@ -0,0 +1,3 @@
1
+ import './global'
2
+
3
+ export * from './bases'
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
3
  "type": "module",
4
- "version": "0.1.24",
4
+ "version": "0.1.26",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/saasmakers/saasmakers-turborepo.git",
10
+ "url": "git+https://github.com/saasmakers/saasmakers-turborepo.git",
11
11
  "directory": "packages/ui"
12
12
  },
13
13
  "main": "nuxt.config.ts",
14
+ "types": "app/types/index.d.ts",
14
15
  "publishConfig": {
15
16
  "access": "public"
16
17
  },
@@ -18,6 +19,12 @@
18
19
  "app",
19
20
  "nuxt.config.ts"
20
21
  ],
22
+ "scripts": {
23
+ "dev": "nuxi dev",
24
+ "lint": "eslint .",
25
+ "prepare": "nuxi prepare",
26
+ "typecheck": "nuxi typecheck"
27
+ },
21
28
  "peerDependencies": {
22
29
  "nuxt": "4.2.1"
23
30
  },
@@ -40,10 +47,5 @@
40
47
  "devDependencies": {
41
48
  "nuxt": "4.2.1",
42
49
  "typescript": "5.9.3"
43
- },
44
- "scripts": {
45
- "dev": "nuxi dev",
46
- "lint": "eslint .",
47
- "typecheck": "nuxi typecheck"
48
50
  }
49
- }
51
+ }
File without changes