Ocelot-Social/packages/ui/package.json
dependabot[bot] 1908332279
build(deps-dev): bump eslint-plugin-storybook from 10.2.7 to 10.2.8 in /packages/ui (#9228)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-14 13:34:33 +00:00

148 lines
3.9 KiB
JSON

{
"name": "@ocelot-social/ui",
"version": "0.0.1",
"description": "Vue component library for ocelot.social - works with Vue 2.7+ and Vue 3",
"license": "Apache-2.0",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./style.css": "./dist/style.css",
"./tailwind.preset": {
"style": "./dist/tailwind.preset.mjs",
"import": {
"types": "./dist/tailwind.preset.d.ts",
"default": "./dist/tailwind.preset.mjs"
},
"require": {
"types": "./dist/tailwind.preset.d.cts",
"default": "./dist/tailwind.preset.cjs"
},
"default": "./dist/tailwind.preset.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "storybook dev -p 6006",
"build": "vite build",
"preview": "storybook build && npx http-server storybook-static -p 6006",
"storybook:build": "storybook build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"verify": "tsx scripts/check-completeness.ts",
"size": "size-limit",
"size:check": "size-limit --json",
"validate": "publint && attw --pack . --profile node16 --exclude-entrypoints ./style.css",
"prepublishOnly": "npm run build && npm run validate"
},
"peerDependencies": {
"tailwindcss": "^4.0.0",
"vue": "^2.7.0 || ^3.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.0",
"vue-demi": "^0.14.10"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@axe-core/playwright": "^4.11.1",
"@eslint/css": "^0.14.1",
"@fontsource-variable/inter": "^5.2.8",
"@playwright/test": "^1.58.2",
"@size-limit/file": "^12.0.0",
"@storybook/vue3-vite": "^10.2.7",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^25.2.3",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.39.2",
"eslint-config-it4c": "^0.9.0",
"eslint-plugin-jsdoc": "^62.5.3",
"eslint-plugin-playwright": "^2.5.1",
"eslint-plugin-storybook": "^10.2.8",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"glob": "^13.0.3",
"jsdom": "^28.0.0",
"publint": "^0.3.17",
"size-limit": "^12.0.0",
"storybook": "^10.2.7",
"tailwind-csstree": "^0.1.4",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18",
"vue": "^3.5.28",
"vue-tsc": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ocelot-Social-Community/Ocelot-Social.git",
"directory": "packages/ui"
},
"bugs": {
"url": "https://github.com/Ocelot-Social-Community/Ocelot-Social/issues"
},
"homepage": "https://github.com/Ocelot-Social-Community/Ocelot-Social/tree/master/packages/ui#readme",
"keywords": [
"vue",
"vue3",
"vue2",
"components",
"ui",
"ocelot-social",
"design-system"
],
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "15 kB",
"brotli": true
},
{
"path": "dist/tailwind.preset.mjs",
"limit": "2 kB"
},
{
"path": "dist/style.css",
"limit": "10 kB"
}
]
}