@bg-dev/nuxt-naiveui
Version:
Unofficial Naive UI module for Nuxt
79 lines • 2.44 kB
JSON
{
"name": "@bg-dev/nuxt-naiveui",
"version": "2.0.0-rc.5",
"description": "Unofficial Naive UI module for Nuxt",
"homepage": "https://nuxt-naiveui.bg.tn",
"author": "Becem Gharbi",
"keywords": [
"nuxt",
"naive-ui",
"module"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./utils": {
"types": "./dist/runtime/utils/index.d.ts",
"import": "./dist/runtime/utils/index.js"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:build:ssr": "nuxi build playground",
"dev:build:spa": "cross-env NUXT_SSR=false nuxi build playground",
"test": "playwright test",
"test:prod:ssr": "npm run dev:build:ssr && cross-env NODE_ENV=production npm run test",
"test:prod:spa": "npm run dev:build:spa && cross-env NODE_ENV=production npm run test",
"test:prod": "npm run test:prod:ssr && npm run test:prod:spa",
"lint": "eslint .",
"typecheck": "nuxi typecheck",
"prepack": "nuxt-module-build",
"release:pre": "npm run typecheck && npm run lint && npm run prepack",
"release": "npm run release:pre && npm run test:prod && changelogen --r 2.0.0-rc.5 --release && npm publish && git push --follow-tags",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@ant-design/colors": "^7.2.0",
"@iconify/vue": "^4.3.0",
"@nuxt/kit": "^3.16.0",
"defu": "^6.1.4",
"js-cookie": "^3.0.5",
"naive-ui": "^2.41.0"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.16.0",
"@nuxtjs/tailwindcss": "^6.13.2",
"@playwright/test": "^1.51.0",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.13.10",
"changelogen": "^0.6.1",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"nuxt": "^3.16.0",
"typescript": "^5.8.2",
"vitepress": "^1.6.3"
},
"repository": {
"url": "git+https://github.com/becem-gharbi/nuxt-naiveui.git"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"packageManager": "yarn@1.22.22"
}