visual upgrade
ci / build-and-design (push) Failing after 13s

This commit is contained in:
Jason Stedwell
2026-07-23 04:23:19 -05:00
parent 9d7f593307
commit 822d8e41e6
53 changed files with 7757 additions and 285 deletions
+47 -13
View File
@@ -1,7 +1,7 @@
{
"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.",
"description": "Shared design foundation branded tokens, Tailwind preset, shadcn-style components, motion, app shell + marketing blocks. Guarded by Impeccable.",
"type": "module",
"license": "MIT",
"author": "Jason <jason@messagepoint.tv>",
@@ -18,7 +18,10 @@
"files": [
"dist",
"tailwind-preset.cjs",
"src/styles/globals.css",
"src/lib/tokens.json",
"src/styles",
".npmrc.example",
"ADOPT.md",
"DESIGN.md",
"PRODUCT.md",
"MIGRATION.md",
@@ -26,27 +29,47 @@
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./tokens": {
"types": "./dist/tokens/tokens-entry.d.ts",
"import": "./dist/tokens/tokens-entry.js"
},
"./preset": "./tailwind-preset.cjs",
"./styles.css": "./src/styles/globals.css"
"./styles.css": "./src/styles/globals.css",
"./fonts.css": "./src/styles/fonts.css"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"main": "./dist/client/index.js",
"module": "./dist/client/index.js",
"types": "./dist/client/index.d.ts",
"scripts": {
"build": "tsup",
"tokens:generate": "node scripts/generate-theme.mjs",
"tokens:check": "node scripts/generate-theme.mjs --check",
"build": "npm run tokens:generate && node scripts/clean-dist.mjs && tsup && node scripts/mark-client-entry.mjs",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"demo": "vite --config vite.demo.config.ts",
"demo:build": "vite build --config vite.demo.config.ts",
"showcase": "vite --config showcase/vite.config.ts",
"showcase:build": "vite build --config showcase/vite.config.ts",
"design:detect": "impeccable detect src/",
"check": "npm run tokens:check && npm run typecheck && npm run test && npm run build && npm run demo:build && npm run showcase:build && npm run design:detect",
"prepare": "npm run build"
},
"dependencies": {
"@fontsource-variable/jetbrains-mono": "^5.3.0",
"@fontsource-variable/montserrat": "^5.3.0",
"@fontsource-variable/open-sans": "^5.3.0",
"@radix-ui/react-checkbox": "^1.3.9",
"@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",
"@radix-ui/react-switch": "^1.3.5",
"@radix-ui/react-tabs": "^1.1.19",
"@radix-ui/react-tooltip": "^1.2.14",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
@@ -56,18 +79,29 @@
"tailwind-merge": "^2.6.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"tailwindcss": ">=3.4"
"react": ">=18 <20",
"react-dom": ">=18 <20",
"tailwindcss": ">=3.4 <4"
},
"overrides": {
"esbuild": "^0.28.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^6.0.4",
"autoprefixer": "^10.5.4",
"axe-core": "^4.12.1",
"impeccable": "^3.2.1",
"jsdom": "^29.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
"typescript": "^5.7.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}