Files
ui/package.json
2024-09-11 10:36:54 +02:00

87 lines
2.4 KiB
JSON

{
"name": "@nuxt/ui",
"version": "3.0.0-alpha.0",
"packageManager": "pnpm@9.10.0",
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit && nuxi typecheck playground && nuxi typecheck docs",
"test": "vitest",
"release": "release-it --preRelease=alpha --npm.tag=next"
},
"dependencies": {
"@nuxt/icon": "^1.5.1",
"@nuxt/kit": "^3.13.1",
"@nuxt/schema": "^3.13.1",
"@nuxtjs/color-mode": "^3.4.4",
"@tailwindcss/postcss": "4.0.0-alpha.23",
"@tailwindcss/vite": "4.0.0-alpha.23",
"@vueuse/core": "^11.0.3",
"@vueuse/integrations": "^11.0.3",
"defu": "^6.1.4",
"fuse.js": "^7.0.0",
"ohash": "^1.1.3",
"radix-vue": "^1.9.5",
"scule": "^1.3.0",
"tailwind-variants": "^0.2.1",
"tailwindcss": "4.0.0-alpha.23",
"vaul-vue": "^0.2.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.5.7",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.14.2",
"@release-it/conventional-changelog": "^8.0.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.10.0",
"happy-dom": "^15.7.3",
"joi": "^17.13.3",
"nuxt": "^3.13.1",
"release-it": "^17.6.0",
"valibot": "^0.41.0",
"vitest": "^2.0.5",
"vitest-environment-nuxt": "^1.0.1",
"vue-tsc": "^2.1.6",
"yup": "^1.4.0",
"zod": "^3.23.8"
},
"resolutions": {
"@nuxt/ui": "workspace:*",
"happy-dom": "14.12.3"
}
}