56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "@dangerousthings/tailwind-preset",
|
|
"version": "0.1.1",
|
|
"description": "Tailwind CSS v3 preset mapping DT design tokens to Tailwind theme",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Dangerous Things",
|
|
"email": "info@dangerousthings.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dangerous-tac0s/dt-design-system.git",
|
|
"directory": "packages/tailwind-preset"
|
|
},
|
|
"homepage": "https://github.com/dangerous-tac0s/dt-design-system#readme",
|
|
"keywords": [
|
|
"dangerousthings",
|
|
"design-system",
|
|
"tailwind",
|
|
"tailwindcss",
|
|
"preset",
|
|
"design-tokens"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|