Files
ui/package.json
2024-10-23 17:32:30 +02:00

105 lines
3.0 KiB
JSON

{
"name": "@nuxt/ui",
"description": "A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.",
"version": "3.0.0-alpha.6",
"packageManager": "pnpm@9.12.2",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/ui.git"
},
"homepage": "https://ui.nuxt.com",
"type": "module",
"license": "MIT",
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"style": "./dist/runtime/index.css"
},
"./runtime/*": "./dist/runtime/*"
},
"bin": {
"nuxt-ui": "./cli/index.mjs"
},
"style": "./dist/runtime/index.css",
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"cli"
],
"scripts": {
"build": "nuxt-module-build build",
"prepack": "pnpm build",
"dev": "DEV=true nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare docs",
"docs": "DEV=true nuxi dev docs",
"docs:build": "nuxi build docs",
"docs:prepare": "nuxt-component-meta docs",
"docs:typecheck": "nuxi typecheck docs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit && nuxi typecheck playground",
"test": "vitest",
"release": "release-it --preRelease=alpha --npm.tag=next"
},
"dependencies": {
"@nuxt/fonts": "^0.10.0",
"@nuxt/icon": "^1.5.6",
"@nuxt/kit": "^3.13.2",
"@nuxt/schema": "^3.13.2",
"@nuxtjs/color-mode": "^3.5.1",
"@tailwindcss/postcss": "4.0.0-alpha.28",
"@tailwindcss/vite": "4.0.0-alpha.28",
"@tanstack/vue-table": "^8.20.5",
"@vueuse/core": "^11.1.0",
"@vueuse/integrations": "^11.1.0",
"defu": "^6.1.4",
"embla-carousel-auto-height": "^8.3.0",
"embla-carousel-auto-scroll": "^8.3.0",
"embla-carousel-autoplay": "^8.3.0",
"embla-carousel-class-names": "^8.3.0",
"embla-carousel-fade": "^8.3.0",
"embla-carousel-vue": "^8.3.0",
"embla-carousel-wheel-gestures": "^8.0.1",
"fuse.js": "^7.0.0",
"ohash": "^1.1.4",
"radix-vue": "^1.9.7",
"scule": "^1.3.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "4.0.0-alpha.28",
"vaul-vue": "^0.2.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.14.4",
"@release-it/conventional-changelog": "^9.0.0",
"@standard-schema/spec": "1.0.0-beta.1",
"@vue/test-utils": "^2.4.6",
"embla-carousel": "^8.3.0",
"eslint": "^9.11.1",
"happy-dom": "^15.7.4",
"joi": "^17.13.3",
"nuxt": "^3.13.2",
"release-it": "^17.10.0",
"superstruct": "^2.0.2",
"valibot": "^0.42.1",
"vitest": "^2.1.3",
"vitest-environment-nuxt": "^1.0.1",
"vue-tsc": "^2.1.6",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"resolutions": {
"@nuxt/ui": "workspace:*",
"happy-dom": "14.12.3",
"rollup": "^4.24.0"
}
}