mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "@tailwindcss/root",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"plugins": [
|
|
"prettier-plugin-organize-imports"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"tsconfig.json"
|
|
],
|
|
"options": {
|
|
"parser": "jsonc"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"integrations/**/*.ts"
|
|
],
|
|
"options": {
|
|
"plugins": [
|
|
"prettier-plugin-embed",
|
|
"prettier-plugin-organize-imports"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && turbo lint",
|
|
"build": "turbo build --filter=!./playgrounds/*",
|
|
"postbuild": "node ./scripts/pack-packages.mjs",
|
|
"dev": "turbo dev --filter=!./playgrounds/*",
|
|
"test": "cargo test && vitest run --hideSkippedTests",
|
|
"test:integrations": "vitest --root=./integrations --no-file-parallelism --hideSkippedTests",
|
|
"test:ui": "pnpm run --filter=tailwindcss test:ui",
|
|
"tdd": "vitest --hideSkippedTests",
|
|
"bench": "vitest bench",
|
|
"version-packages": "node ./scripts/version-packages.mjs",
|
|
"vite": "pnpm run --filter=vite-playground dev",
|
|
"nextjs": "pnpm run --filter=nextjs-playground dev"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.49.0",
|
|
"@types/node": "catalog:",
|
|
"postcss": "8.4.49",
|
|
"postcss-import": "^16.1.0",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-embed": "^0.4.15",
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
|
"tsup": "^8.2.4",
|
|
"turbo": "^2.2.3",
|
|
"typescript": "^5.5.4",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"packageManager": "pnpm@9.6.0",
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"lightningcss@1.26.0": "patches/lightningcss@1.26.0.patch",
|
|
"@parcel/watcher@2.5.0": "patches/@parcel__watcher@2.5.0.patch"
|
|
}
|
|
}
|
|
}
|