shadcn-nuxt 0.11.4 → 1.0.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 radix-vue
3
+ Copyright (c) 2023 unovue
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -17,7 +17,7 @@ Find and replace all on all files (CMD+SHIFT+F):
17
17
  Shadcn Vue module for Nuxt.
18
18
 
19
19
  - [✨  Release Notes](/CHANGELOG.md)
20
- <!-- - [🏀 Online playground](https://stackblitz.com/github/radix-vue/shadcn-vue?file=playground%2Fapp.vue) -->
20
+ <!-- - [🏀 Online playground](https://stackblitz.com/github/unovue/shadcn-vue?file=playground%2Fapp.vue) -->
21
21
  - [📖 &nbsp;Documentation](https://www.shadcn-vue.com/docs/installation/nuxt.html)
22
22
 
23
23
  ## Features
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shadcn",
3
3
  "configKey": "shadcn",
4
- "version": "0.11.4",
4
+ "version": "1.0.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "unknown"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shadcn-nuxt",
3
3
  "type": "module",
4
- "version": "0.11.4",
4
+ "version": "1.0.0",
5
5
  "description": "Add shadcn-vue module to Nuxt",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -9,7 +9,7 @@
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "https://github.com/radix-vue/shadcn-vue.git",
12
+ "url": "https://github.com/unovue/shadcn-vue.git",
13
13
  "directory": "packages/module"
14
14
  },
15
15
  "exports": {
@@ -25,19 +25,19 @@
25
25
  "dist"
26
26
  ],
27
27
  "dependencies": {
28
- "@nuxt/kit": "^3.12.4",
28
+ "@nuxt/kit": "^3.15.4",
29
29
  "@oxc-parser/wasm": "^0.50.0",
30
30
  "typescript": "5.6.3"
31
31
  },
32
32
  "devDependencies": {
33
- "@nuxt/eslint-config": "^0.5.0",
34
- "@nuxt/module-builder": "^0.8.2",
35
- "@nuxt/schema": "^3.12.4",
36
- "@nuxt/test-utils": "^3.14.0",
37
- "@nuxtjs/color-mode": "^3.5.1",
38
- "@nuxtjs/tailwindcss": "^6.12.2",
39
- "@types/node": "^20.14.15",
40
- "nuxt": "^3.12.4"
33
+ "@nuxt/eslint-config": "^1.0.1",
34
+ "@nuxt/module-builder": "^0.8.4",
35
+ "@nuxt/schema": "^3.15.4",
36
+ "@nuxt/test-utils": "^3.15.4",
37
+ "@nuxtjs/color-mode": "^3.5.2",
38
+ "@nuxtjs/tailwindcss": "^6.13.1",
39
+ "@types/node": "^22.13.1",
40
+ "nuxt": "^3.15.4"
41
41
  },
42
42
  "scripts": {
43
43
  "dev": "nuxi dev playground",
@@ -47,6 +47,7 @@
47
47
  "test": "vitest run",
48
48
  "test:watch": "vitest watch",
49
49
  "release": "pnpm run prepack && pnpm publish && git push --follow-tags",
50
- "pub:release": "pnpm prepack && pnpm publish --no-git-checks --access public --tag radix"
50
+ "pub:next": "pnpm prepack && pnpm publish --no-git-checks --access public --tag next",
51
+ "pub:release": "pnpm prepack && pnpm publish --no-git-checks --access public"
51
52
  }
52
53
  }