Files
ui-kit/package.json
T
Jason Stedwell 9d7f593307
ci / build-and-design (push) Failing after 10s
fix: danger Button uses text-bg, not white (v0.4.1)
White on the danger fill lands ~3.3:1 against tuned dark-theme danger
tokens (e.g. delta's rust at 58% lightness) — below AA for 14px labels.
text-bg follows the primary variant's own pattern (bg-brand text-bg)
and holds ≥4.5:1 on both the kit default and delta's tokens.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-16 11:14:47 -05:00

74 lines
1.9 KiB
JSON
Executable File

{
"name": "@jason/ui-kit",
"version": "0.4.1",
"description": "Shared design foundation \u2014 branded tokens, Tailwind preset, shadcn-style components, motion, app shell + marketing blocks. Guarded by Impeccable.",
"type": "module",
"license": "MIT",
"author": "Jason <jason@messagepoint.tv>",
"repository": {
"type": "git",
"url": "https://git.alwisp.com/jason/ui-kit.git"
},
"publishConfig": {
"registry": "https://git.alwisp.com/api/packages/jason/npm/"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist",
"tailwind-preset.cjs",
"src/styles/globals.css",
"DESIGN.md",
"PRODUCT.md",
"MIGRATION.md",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./preset": "./tailwind-preset.cjs",
"./styles.css": "./src/styles/globals.css"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"design:detect": "impeccable detect src/",
"prepare": "npm run build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-slot": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"lucide-react": "^0.469.0",
"motion": "^11.15.0",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"tailwindcss": ">=3.4"
},
"devDependencies": {
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"impeccable": "^3.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}