UNPKG

@studiocms/ui

Version:

The UI library for StudioCMS. Includes the layouts & components we use to build StudioCMS.

88 lines 2.56 kB
{ "name": "@studiocms/ui", "version": "1.2.0", "description": "The UI library for StudioCMS. Includes the layouts & components we use to build StudioCMS.", "repository": { "type": "git", "url": "git+https://github.com/withstudiocms/ui.git" }, "author": { "name": "Louis Escher", "url": "https://studiocms.dev" }, "contributors": [ "louisescher", "TheOtterlord", "Adammatthiesen", "JusticeMatthew" ], "keywords": [ "withastro", "astro-ui-library", "astro-components", "studiocms", "ui-library", "astro-integration" ], "homepage": "https://ui.studiocms.dev", "publishConfig": { "access": "public", "provenance": true }, "sideEffects": false, "files": [ "dist" ], "license": "MIT", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./toolbar": { "types": "./dist/toolbar/index.d.ts", "default": "./dist/toolbar/index.js" }, "./components/*": "./dist/components/*", "./css/*": "./dist/css/*", "./utils/*": "./dist/utils/*", "./types": { "types": "./dist/types/index.d.ts", "default": "./dist/types/index.js" }, "./v/types": { "types": "./dist/virtuals.d.ts", "default": "./dist/virtuals.d.js" } }, "dependencies": { "@iconify-json/heroicons": "^1.2.1", "@iconify/types": "^2.0.0", "astro-transition-event-polyfill": "^1.2.1", "astro-integration-kit": "^0.20.0" }, "peerDependencies": { "astro": "^4.5 || ^5.0.0-beta.0 || ^6.0.0-beta.20", "vite": "^5.0.0 || ^6.0.0 || ^7.0.0" }, "devDependencies": { "astro": "^6.0.0", "typescript": "^5.9.3", "@types/node": "^24.12.0" }, "scripts": { "delete:dist": "node -e \"import { rmSync } from 'fs'; rmSync('./dist', { recursive: true, force: true });\"", "build": "pnpm delete:dist && buildkit build 'src/**/*.{ts,d.ts,css,astro,stub}' --tsconfig=tsconfig.build.json", "dev": "buildkit dev 'src/**/*.{ts,d.ts,css,astro,stub}' --tsconfig=tsconfig.build.json", "playwright:setup": "pnpm exec playwright install --with-deps", "test-server": "pnpm --filter @test-fixture/server dev", "test:vitest": "vitest", "test:vitest:run": "vitest run", "test:vitest:ui": "vitest --ui", "test:vitest:coverage": "vitest run --coverage", "test:playwright": "pnpm exec playwright test", "view:playwright": "pnpm exec playwright show-report", "ci:coverage": "pnpm test:vitest:coverage" } }