mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
This PR bumps dependencies We also make some dependencies `catalog:` dependencies, which allows us to keep the version in sync. E.g.: `lightningcss` and `@types/node`. Bumped `turbo` to the latest version + enabled the new UI Fixed a bug in the tests now that `lightningcss` outputs the correct value.
64 lines
1.6 KiB
JSON
64 lines
1.6 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/* && node ./scripts/pack-packages.mjs",
|
|
"dev": "turbo dev --filter=!./playgrounds/*",
|
|
"test": "cargo test && vitest run",
|
|
"test:integrations": "vitest --root=./integrations --no-file-parallelism",
|
|
"test:ui": "pnpm run --filter=tailwindcss test:ui",
|
|
"tdd": "vitest",
|
|
"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.46.0",
|
|
"@types/node": "catalog:",
|
|
"postcss": "8.4.41",
|
|
"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.0.12",
|
|
"typescript": "^5.5.4",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"packageManager": "pnpm@9.6.0"
|
|
}
|