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 +1 -1
- package/README.md +1 -1
- package/dist/module.json +1 -1
- package/package.json +13 -12
package/LICENSE
CHANGED
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/
|
|
20
|
+
<!-- - [🏀 Online playground](https://stackblitz.com/github/unovue/shadcn-vue?file=playground%2Fapp.vue) -->
|
|
21
21
|
- [📖 Documentation](https://www.shadcn-vue.com/docs/installation/nuxt.html)
|
|
22
22
|
|
|
23
23
|
## Features
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shadcn-nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
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/
|
|
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.
|
|
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.
|
|
34
|
-
"@nuxt/module-builder": "^0.8.
|
|
35
|
-
"@nuxt/schema": "^3.
|
|
36
|
-
"@nuxt/test-utils": "^3.
|
|
37
|
-
"@nuxtjs/color-mode": "^3.5.
|
|
38
|
-
"@nuxtjs/tailwindcss": "^6.
|
|
39
|
-
"@types/node": "^
|
|
40
|
-
"nuxt": "^3.
|
|
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:
|
|
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
|
}
|