{ "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", "imports": { "#src/*": "./src/*" }, "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "./ocelot": { "import": { "types": "./dist/ocelot.d.ts", "default": "./dist/ocelot.mjs" }, "require": { "types": "./dist/ocelot.d.cts", "default": "./dist/ocelot.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", "@fontsource-variable/inter": "^5.2.8", "@playwright/test": "^1.58.2", "@size-limit/file": "^12.0.0", "@storybook/vue3-vite": "^10.2.10", "@tailwindcss/cli": "^4.2.0", "@tailwindcss/vite": "^4.1.18", "@types/node": "^25.3.0", "@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.11.2", "eslint-plugin-jsdoc": "^62.7.0", "eslint-plugin-playwright": "^2.7.0", "eslint-plugin-storybook": "^10.2.10", "eslint-plugin-vuejs-accessibility": "^2.5.0", "glob": "^13.0.6", "jsdom": "^28.1.0", "publint": "^0.3.17", "size-limit": "^12.0.0", "storybook": "^10.2.7", "tailwind-csstree": "^0.1.4", "tailwindcss": "^4.2.0", "tsx": "^4.21.0", "typescript": "^5.9.3", "vite": "^7.3.1", "vite-plugin-dts": "^4.5.4", "vite-tsconfig-paths": "^6.1.1", "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": "20 kB", "brotli": true }, { "path": "dist/tailwind.preset.mjs", "limit": "1 kB", "brotli": true }, { "path": "dist/ocelot.mjs", "limit": "45 kB", "brotli": true }, { "path": "dist/style.css", "limit": "5 kB", "brotli": true } ] }