diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2025-11-24 20:54:57 +0100 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2025-11-24 20:57:48 +0100 |
| commit | b1e2c8fd5cb5dfa46bc440a12eafaf56cd844b1c (patch) | |
| tree | 49d360fd6cbc6a2754efe93524ac47ff0fbe0f7d /node_modules/@tailwindcss/nesting/package.json | |
Docs
Diffstat (limited to 'node_modules/@tailwindcss/nesting/package.json')
| -rw-r--r-- | node_modules/@tailwindcss/nesting/package.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/node_modules/@tailwindcss/nesting/package.json b/node_modules/@tailwindcss/nesting/package.json new file mode 100644 index 0000000..62ce37f --- /dev/null +++ b/node_modules/@tailwindcss/nesting/package.json @@ -0,0 +1,39 @@ +{ + "name": "@tailwindcss/nesting", + "version": "0.0.0-insiders.565cd3e", + "description": "A light wrapper around any postcss nesting plugin improves compatibility with Tailwind CSS.", + "main": "index.js", + "scripts": { + "test": "jest" + }, + "publishConfig": { + "access": "public" + }, + "prettier": { + "printWidth": 100, + "semi": false, + "singleQuote": true, + "trailingComma": "es5" + }, + "jest": { + "setupFilesAfterEnv": [ + "<rootDir>/jest/custom-matchers.js" + ] + }, + "files": [ + "index.js", + "README.md" + ], + "license": "MIT", + "peerDependencies": { + "postcss": "^8.2.15" + }, + "dependencies": { + "postcss-nested": "^5.0.5" + }, + "devDependencies": { + "jest": "^26.6.3", + "postcss": "^8.2.15", + "prettier": "^2.3.0" + } +} |