monorepo/packages/tailwind/package.json

29 lines
680 B
JSON

{
"name": "@repo/tailwind-config",
"type": "module",
"version": "0.1.0",
"private": true,
"license": "MIT",
"exports": {
"./native": "./native.ts",
"./web": "./web.ts"
},
"scripts": {
"clean": "git clean -xdf .cache .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"postcss": "^8.5.3",
"tailwindcss": "4.1.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "^22.14.1",
"typescript": "5.8.3"
}
}