Files
dt-design-system/packages/tailwind-preset/package.json
michael 30a0510a5e Fix CI build failure and add missing LICENSE files
Add "require" export condition to tailwind-preset for Node 18 CJS
compatibility (jiti resolution). Add LICENSE files to react,
tailwind-preset, and hex-background packages. Add license field to
showcase packages.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 10:31:55 -08:00

35 lines
716 B
JSON

{
"name": "@dangerousthings/tailwind-preset",
"version": "0.1.0",
"description": "Tailwind CSS v3 preset mapping DT design tokens to Tailwind theme",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"tailwindcss": "^3.4.0"
},
"devDependencies": {
"tailwindcss": "^3.4.0",
"typescript": "^5.8.0"
}
}