mirror of
https://github.com/nuxt/ui.git
synced 2026-09-14 19:51:10 +08:00
306 lines
8.5 KiB
JSON
306 lines
8.5 KiB
JSON
{
|
|
"name": "@nuxt/ui",
|
|
"description": "A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.",
|
|
"version": "4.11.1",
|
|
"packageManager": "pnpm@11.25.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nuxt/ui.git"
|
|
},
|
|
"homepage": "https://ui.nuxt.com",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0"
|
|
},
|
|
"license": "MIT",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/module.d.mts",
|
|
"style": "./dist/runtime/index.css",
|
|
"import": "./dist/module.mjs"
|
|
},
|
|
"./unplugin": {
|
|
"types": "./dist/unplugin.d.mts",
|
|
"import": "./dist/unplugin.mjs"
|
|
},
|
|
"./vite": {
|
|
"types": "./dist/vite.d.mts",
|
|
"import": "./dist/vite.mjs"
|
|
},
|
|
"./vue-plugin": {
|
|
"types": "./vue-plugin.d.ts"
|
|
},
|
|
"./runtime/*": "./dist/runtime/*",
|
|
"./components/*": "./dist/runtime/components/*",
|
|
"./composables": {
|
|
"types": "./dist/runtime/composables/index.d.ts",
|
|
"import": "./dist/runtime/composables/index.js"
|
|
},
|
|
"./composables/*": {
|
|
"types": "./dist/runtime/composables/*.d.ts",
|
|
"import": "./dist/runtime/composables/*.js"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/runtime/utils/index.d.ts",
|
|
"import": "./dist/runtime/utils/index.js"
|
|
},
|
|
"./utils/*": {
|
|
"types": "./dist/runtime/utils/*.d.ts",
|
|
"import": "./dist/runtime/utils/*.js"
|
|
},
|
|
"./locale": {
|
|
"types": "./dist/runtime/locale/index.d.ts",
|
|
"import": "./dist/runtime/locale/index.js"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./dist/module.d.mts"
|
|
],
|
|
"unplugin": [
|
|
"./dist/unplugin.d.mts"
|
|
],
|
|
"vite": [
|
|
"./dist/vite.d.mts"
|
|
],
|
|
"vue-plugin": [
|
|
"./vue-plugin.d.ts"
|
|
],
|
|
"runtime/*": [
|
|
"./dist/runtime/*"
|
|
],
|
|
"components/*": [
|
|
"./dist/runtime/components/*"
|
|
],
|
|
"composables": [
|
|
"./dist/runtime/composables/index.d.ts"
|
|
],
|
|
"composables/*": [
|
|
"./dist/runtime/composables/*.d.ts"
|
|
],
|
|
"utils": [
|
|
"./dist/runtime/utils/index.d.ts"
|
|
],
|
|
"utils/*": [
|
|
"./dist/runtime/utils/*.d.ts"
|
|
],
|
|
"locale": [
|
|
"./dist/runtime/locale/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"imports": {
|
|
"#build/ui.css": "./.nuxt/ui.static.css"
|
|
},
|
|
"bin": {
|
|
"nuxt-ui": "./cli/index.mjs"
|
|
},
|
|
"style": "./dist/runtime/index.css",
|
|
"main": "./dist/module.mjs",
|
|
"sideEffects": [
|
|
"**/*.css"
|
|
],
|
|
"files": [
|
|
".nuxt/ui.static.css",
|
|
"dist",
|
|
"cli",
|
|
"vue-plugin.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "nuxt-module-build build",
|
|
"prepack": "pnpm build",
|
|
"dev": "nuxt dev playgrounds/nuxt --uiDev",
|
|
"dev:build": "nuxt build playgrounds/nuxt",
|
|
"dev:vue": "pnpm --filter './playgrounds/vue' dev -- --uiDev",
|
|
"dev:vue:build": "pnpm --filter './playgrounds/vue' build",
|
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playgrounds/nuxt && nuxt prepare docs && pnpm dev:vue:build",
|
|
"repl": "pnpm --filter './playgrounds/repl' dev",
|
|
"repl:bundle": "pnpm --filter './playgrounds/repl' bundle",
|
|
"repl:build": "pnpm --filter './playgrounds/repl' build",
|
|
"repl:prepare": "nuxt-module-build build --stub && mkdir -p .nuxt && echo '{\"compilerOptions\":{}}' > .nuxt/tsconfig.json",
|
|
"docs": "nuxt dev docs --uiDev",
|
|
"docs:build": "nuxt build docs",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"typecheck": "vue-tsc --noEmit && nuxt typecheck playgrounds/nuxt && nuxt typecheck docs && cd playgrounds/vue && vue-tsc --noEmit",
|
|
"test": "vitest",
|
|
"test:vue": "vitest --project vue",
|
|
"test:nuxt": "vitest --project nuxt",
|
|
"bench": "vitest bench --project vue",
|
|
"release": "release-it"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/dom": "^1.8.0",
|
|
"@iconify/vue": "^5.0.1",
|
|
"@internationalized/date": "^3.12.4",
|
|
"@internationalized/number": "^3.6.8",
|
|
"@nuxt/fonts": "^0.14.0",
|
|
"@nuxt/icon": "^2.5.1",
|
|
"@nuxt/kit": "^4.5.2",
|
|
"@nuxt/schema": "^4.5.2",
|
|
"@nuxtjs/color-mode": "^4.0.1",
|
|
"@standard-schema/spec": "^1.1.0",
|
|
"@tailwindcss/postcss": "^4.3.3",
|
|
"@tailwindcss/vite": "^4.3.3",
|
|
"@tanstack/vue-table": "^8.21.3",
|
|
"@tanstack/vue-virtual": "^3.13.36",
|
|
"@tiptap/core": "^3.31.3",
|
|
"@tiptap/extension-bubble-menu": "^3.31.3",
|
|
"@tiptap/extension-code": "^3.31.3",
|
|
"@tiptap/extension-collaboration": "^3.31.3",
|
|
"@tiptap/extension-drag-handle": "^3.31.3",
|
|
"@tiptap/extension-drag-handle-vue-3": "^3.31.3",
|
|
"@tiptap/extension-floating-menu": "^3.31.3",
|
|
"@tiptap/extension-horizontal-rule": "^3.31.3",
|
|
"@tiptap/extension-image": "^3.31.3",
|
|
"@tiptap/extension-mention": "^3.31.3",
|
|
"@tiptap/extension-node-range": "^3.31.3",
|
|
"@tiptap/extension-placeholder": "^3.31.3",
|
|
"@tiptap/markdown": "^3.31.3",
|
|
"@tiptap/pm": "^3.31.3",
|
|
"@tiptap/starter-kit": "^3.31.3",
|
|
"@tiptap/suggestion": "^3.31.3",
|
|
"@tiptap/vue-3": "^3.31.3",
|
|
"@unhead/vue": "^3.4.0",
|
|
"@vueuse/core": "^14.4.0",
|
|
"@vueuse/integrations": "^14.4.0",
|
|
"@vueuse/shared": "^14.4.0",
|
|
"colortranslator": "^5.0.0",
|
|
"consola": "^3.4.2",
|
|
"defu": "^6.1.7",
|
|
"embla-carousel-auto-height": "^8.6.0",
|
|
"embla-carousel-auto-scroll": "^8.6.0",
|
|
"embla-carousel-autoplay": "^8.6.0",
|
|
"embla-carousel-class-names": "^8.6.0",
|
|
"embla-carousel-fade": "^8.6.0",
|
|
"embla-carousel-vue": "^8.6.0",
|
|
"embla-carousel-wheel-gestures": "^8.1.0",
|
|
"fuse.js": "^7.5.0",
|
|
"hookable": "^6.1.1",
|
|
"knitwork": "^1.3.0",
|
|
"magic-string": "^1.2.3",
|
|
"mlly": "^1.8.2",
|
|
"motion-v": "^2.4.2",
|
|
"ohash": "^2.0.12",
|
|
"pathe": "^2.0.3",
|
|
"reka-ui": "2.10.4",
|
|
"scule": "^1.3.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"tailwind-variants": "^3.2.2",
|
|
"tailwindcss": "^4.3.3",
|
|
"tinyglobby": "^0.2.17",
|
|
"ufo": "^1.6.4",
|
|
"unplugin": "^3.3.0",
|
|
"unplugin-auto-import": "^21.1.0",
|
|
"unplugin-vue-components": "^32.1.0",
|
|
"vaul-vue": "0.4.1",
|
|
"vue-component-type-helpers": "^3.3.11"
|
|
},
|
|
"devDependencies": {
|
|
"@codspeed/vitest-plugin": "^5.7.1",
|
|
"@nuxt/eslint-config": "^1.17.0",
|
|
"@nuxt/module-builder": "^1.0.3",
|
|
"@nuxt/test-utils": "^4.2.0",
|
|
"@release-it/conventional-changelog": "^12.0.0",
|
|
"@tanstack/table-core": "^8.21.3",
|
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
"@vue/test-utils": "^2.5.0",
|
|
"ai": "^7.0.93",
|
|
"embla-carousel": "^8.6.0",
|
|
"eslint": "^10.10.0",
|
|
"happy-dom": "^20.14.0",
|
|
"nuxt": "^4.5.2",
|
|
"release-it": "^21.0.2",
|
|
"unbuild": "^3.6.1",
|
|
"vitest": "^4.1.11",
|
|
"vitest-axe": "^0.1.0",
|
|
"vitest-environment-nuxt": "^2.0.0",
|
|
"vue": "^3.5.42",
|
|
"vue-tsc": "^3.3.11"
|
|
},
|
|
"peerDependencies": {
|
|
"@inertiajs/vue3": "^2.0.7 || ^3.0.0",
|
|
"@internationalized/date": "^3.0.0",
|
|
"@internationalized/number": "^3.0.0",
|
|
"@nuxt/content": "^3.0.0",
|
|
"@tiptap/core": "^3",
|
|
"@tiptap/extension-bubble-menu": "^3",
|
|
"@tiptap/extension-code": "^3",
|
|
"@tiptap/extension-collaboration": "^3",
|
|
"@tiptap/extension-drag-handle": "^3",
|
|
"@tiptap/extension-drag-handle-vue-3": "^3",
|
|
"@tiptap/extension-floating-menu": "^3",
|
|
"@tiptap/extension-horizontal-rule": "^3",
|
|
"@tiptap/extension-image": "^3",
|
|
"@tiptap/extension-mention": "^3",
|
|
"@tiptap/extension-node-range": "^3",
|
|
"@tiptap/extension-placeholder": "^3",
|
|
"@tiptap/markdown": "^3",
|
|
"@tiptap/pm": "^3",
|
|
"@tiptap/starter-kit": "^3",
|
|
"@tiptap/suggestion": "^3",
|
|
"@tiptap/vue-3": "^3",
|
|
"ai": "^6 || ^7",
|
|
"joi": "^18.0.0",
|
|
"superstruct": "^2.0.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.6.3 || ^6.0.0 || ^7.0.0",
|
|
"valibot": "^1.0.0",
|
|
"vue-router": "^4.5.0 || ^5.0.0",
|
|
"yup": "^1.7.0",
|
|
"zod": "^3.24.0 || ^4.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@inertiajs/vue3": {
|
|
"optional": true
|
|
},
|
|
"@internationalized/date": {
|
|
"optional": true
|
|
},
|
|
"@internationalized/number": {
|
|
"optional": true
|
|
},
|
|
"@nuxt/content": {
|
|
"optional": true
|
|
},
|
|
"ai": {
|
|
"optional": true
|
|
},
|
|
"joi": {
|
|
"optional": true
|
|
},
|
|
"valibot": {
|
|
"optional": true
|
|
},
|
|
"superstruct": {
|
|
"optional": true
|
|
},
|
|
"vue-router": {
|
|
"optional": true
|
|
},
|
|
"yup": {
|
|
"optional": true
|
|
},
|
|
"zod": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"keywords": [
|
|
"nuxt-ui",
|
|
"nuxt",
|
|
"vue3",
|
|
"tailwindcss",
|
|
"component library",
|
|
"vue",
|
|
"vuejs",
|
|
"vue.js",
|
|
"typescript",
|
|
"vue-components",
|
|
"ui",
|
|
"tailwind",
|
|
"framework",
|
|
"ui-framework"
|
|
]
|
|
}
|