tailwindcss
Advanced tools
Comparing version 0.0.0-insiders.e010788 to 0.0.0-insiders.e02a29f
167
package.json
{ | ||
"name": "tailwindcss", | ||
"version": "0.0.0-insiders.e010788", | ||
"version": "0.0.0-insiders.e02a29f", | ||
"description": "A utility-first CSS framework for rapidly building custom user interfaces.", | ||
"license": "MIT", | ||
"main": "lib/index.js", | ||
"types": "types/index.d.ts", | ||
"repository": "https://github.com/tailwindlabs/tailwindcss.git", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/tailwindlabs/tailwindcss.git", | ||
"directory": "packages/tailwindcss" | ||
}, | ||
"bugs": "https://github.com/tailwindlabs/tailwindcss/issues", | ||
"homepage": "https://tailwindcss.com", | ||
"bin": { | ||
"tailwind": "lib/cli.js", | ||
"tailwindcss": "lib/cli.js" | ||
"exports": { | ||
".": { | ||
"types": "./dist/lib.d.mts", | ||
"style": "./index.css", | ||
"require": "./dist/lib.js", | ||
"import": "./dist/lib.mjs" | ||
}, | ||
"./plugin": { | ||
"require": "./dist/plugin.js", | ||
"import": "./dist/plugin.mjs" | ||
}, | ||
"./plugin.js": { | ||
"require": "./dist/plugin.js", | ||
"import": "./dist/plugin.mjs" | ||
}, | ||
"./defaultTheme": { | ||
"require": "./dist/default-theme.js", | ||
"import": "./dist/default-theme.mjs" | ||
}, | ||
"./defaultTheme.js": { | ||
"require": "./dist/default-theme.js", | ||
"import": "./dist/default-theme.mjs" | ||
}, | ||
"./colors": { | ||
"require": "./dist/colors.js", | ||
"import": "./dist/colors.mjs" | ||
}, | ||
"./colors.js": { | ||
"require": "./dist/colors.js", | ||
"import": "./dist/colors.mjs" | ||
}, | ||
"./lib/util/flattenColorPalette": { | ||
"require": "./dist/flatten-color-palette.js", | ||
"import": "./dist/flatten-color-palette.mjs" | ||
}, | ||
"./package.json": "./package.json", | ||
"./index.css": "./index.css", | ||
"./index": "./index.css", | ||
"./preflight.css": "./preflight.css", | ||
"./preflight": "./preflight.css", | ||
"./theme.css": "./theme.css", | ||
"./theme": "./theme.css", | ||
"./utilities.css": "./utilities.css", | ||
"./utilities": "./utilities.css" | ||
}, | ||
"scripts": { | ||
"preswcify": "npm run generate && rimraf lib", | ||
"swcify": "swc src --out-dir lib --copy-files", | ||
"postswcify": "esbuild lib/cli-peer-dependencies.js --bundle --platform=node --outfile=peers/index.js", | ||
"rebuild-fixtures": "npm run swcify && node -r @swc/register scripts/rebuildFixtures.js", | ||
"prepublishOnly": "npm install --force && npm run swcify", | ||
"style": "eslint .", | ||
"pretest": "npm run generate", | ||
"test": "jest", | ||
"test:integrations": "npm run test --prefix ./integrations", | ||
"install:integrations": "node scripts/install-integrations.js", | ||
"posttest": "npm run style", | ||
"generate:plugin-list": "node -r @swc/register scripts/create-plugin-list.js", | ||
"generate:types": "node -r @swc/register scripts/generate-types.js", | ||
"generate": "npm run generate:plugin-list && npm run generate:types" | ||
"publishConfig": { | ||
"provenance": true, | ||
"access": "public" | ||
}, | ||
"style": "index.css", | ||
"files": [ | ||
"src/*", | ||
"cli/*", | ||
"lib/*", | ||
"peers/*", | ||
"scripts/*.js", | ||
"stubs/*.stub.js", | ||
"nesting/*", | ||
"types/**/*", | ||
"*.d.ts", | ||
"*.css", | ||
"*.js" | ||
"dist", | ||
"index.css", | ||
"preflight.css", | ||
"theme.css", | ||
"utilities.css" | ||
], | ||
"devDependencies": { | ||
"@swc/cli": "^0.1.57", | ||
"@swc/core": "^1.2.160", | ||
"@swc/jest": "^0.2.20", | ||
"@swc/register": "^0.1.10", | ||
"autoprefixer": "^10.4.4", | ||
"cssnano": "^5.1.7", | ||
"esbuild": "^0.14.36", | ||
"eslint": "^8.13.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^27.5.1", | ||
"jest-diff": "^27.5.1", | ||
"prettier": "^2.6.0", | ||
"prettier-plugin-tailwindcss": "^0.1.8", | ||
"rimraf": "^3.0.0", | ||
"source-map-js": "^1.0.2" | ||
"@types/node": "^20.14.8", | ||
"lightningcss": "^1.29.1", | ||
"dedent": "1.5.3", | ||
"@tailwindcss/oxide": "0.0.0-insiders.e02a29f" | ||
}, | ||
"peerDependencies": { | ||
"postcss": "^8.0.9" | ||
}, | ||
"dependencies": { | ||
"arg": "^5.0.1", | ||
"chokidar": "^3.5.3", | ||
"color-name": "^1.1.4", | ||
"detective": "^5.2.0", | ||
"didyoumean": "^1.2.2", | ||
"dlv": "^1.1.3", | ||
"fast-glob": "^3.2.11", | ||
"glob-parent": "^6.0.2", | ||
"is-glob": "^4.0.3", | ||
"lilconfig": "^2.0.5", | ||
"normalize-path": "^3.0.0", | ||
"object-hash": "^3.0.0", | ||
"picocolors": "^1.0.0", | ||
"postcss": "^8.4.12", | ||
"postcss-js": "^4.0.0", | ||
"postcss-load-config": "^3.1.4", | ||
"postcss-nested": "5.0.6", | ||
"postcss-selector-parser": "^6.0.10", | ||
"postcss-value-parser": "^4.2.0", | ||
"quick-lru": "^5.1.1", | ||
"resolve": "^1.22.0" | ||
}, | ||
"browserslist": [ | ||
"> 1%", | ||
"not edge <= 18", | ||
"not ie 11", | ||
"not op_mini all" | ||
], | ||
"jest": { | ||
"testTimeout": 30000, | ||
"setupFilesAfterEnv": [ | ||
"<rootDir>/jest/customMatchers.js" | ||
], | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/integrations/", | ||
"/standalone-cli/" | ||
], | ||
"transform": { | ||
"\\.js$": "@swc/jest" | ||
} | ||
}, | ||
"engines": { | ||
"node": ">=12.13.0" | ||
"scripts": { | ||
"lint": "tsc --noEmit", | ||
"build": "tsup-node --env.NODE_ENV production", | ||
"dev": "tsup-node --env.NODE_ENV development --watch", | ||
"test:ui": "playwright test" | ||
} | ||
} | ||
} |
@@ -1,14 +0,17 @@ | ||
<p> | ||
<a href="https://tailwindcss.com/#gh-light-mode-only" target="_blank"> | ||
<img src="./.github/logo-light.svg" alt="Tailwind CSS" width="350" height="70"> | ||
<p align="center"> | ||
<a href="https://tailwindcss.com" target="_blank"> | ||
<picture> | ||
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-dark.svg"> | ||
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg"> | ||
<img alt="Tailwind CSS" src="https://raw.githubusercontent.com/tailwindlabs/tailwindcss/HEAD/.github/logo-light.svg" width="350" height="70" style="max-width: 100%;"> | ||
</picture> | ||
</a> | ||
<a href="https://tailwindcss.com/#gh-dark-mode-only" target="_blank"> | ||
<img src="./.github/logo-dark.svg" alt="Tailwind CSS" width="350" height="70"> | ||
</a> | ||
</p> | ||
A utility-first CSS framework for rapidly building custom user interfaces. | ||
<p align="center"> | ||
A utility-first CSS framework for rapidly building custom user interfaces. | ||
</p> | ||
<p> | ||
<a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/workflow/status/tailwindlabs/tailwindcss/Node.js%20CI" alt="Build Status"></a> | ||
<p align="center"> | ||
<a href="https://github.com/tailwindlabs/tailwindcss/actions"><img src="https://img.shields.io/github/actions/workflow/status/tailwindlabs/tailwindcss/ci.yml?branch=next" alt="Build Status"></a> | ||
<a href="https://www.npmjs.com/package/tailwindcss"><img src="https://img.shields.io/npm/dt/tailwindcss.svg" alt="Total Downloads"></a> | ||
@@ -19,7 +22,7 @@ <a href="https://github.com/tailwindcss/tailwindcss/releases"><img src="https://img.shields.io/npm/v/tailwindcss.svg" alt="Latest Release"></a> | ||
------ | ||
--- | ||
## Documentation | ||
For full documentation, visit [tailwindcss.com](https://tailwindcss.com/). | ||
For full documentation, visit [tailwindcss.com](https://tailwindcss.com). | ||
@@ -32,3 +35,3 @@ ## Community | ||
For casual chit-chat with others using the framework: | ||
For chatting with others using the framework: | ||
@@ -39,2 +42,2 @@ [Join the Tailwind CSS Discord Server](https://discord.gg/7NF8GNe) | ||
If you're interested in contributing to Tailwind CSS, please read our [contributing docs](https://github.com/tailwindcss/tailwindcss/blob/master/.github/CONTRIBUTING.md) **before submitting a pull request**. | ||
If you're interested in contributing to Tailwind CSS, please read our [contributing docs](https://github.com/tailwindcss/tailwindcss/blob/next/.github/CONTRIBUTING.md) **before submitting a pull request**. |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 3 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 2 instances in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
0
4
41
0
554705
34
4651
- Removedarg@^5.0.1
- Removedchokidar@^3.5.3
- Removedcolor-name@^1.1.4
- Removeddetective@^5.2.0
- Removeddidyoumean@^1.2.2
- Removeddlv@^1.1.3
- Removedfast-glob@^3.2.11
- Removedglob-parent@^6.0.2
- Removedis-glob@^4.0.3
- Removedlilconfig@^2.0.5
- Removednormalize-path@^3.0.0
- Removedobject-hash@^3.0.0
- Removedpicocolors@^1.0.0
- Removedpostcss@^8.4.12
- Removedpostcss-js@^4.0.0
- Removedpostcss-load-config@^3.1.4
- Removedpostcss-nested@5.0.6
- Removedpostcss-selector-parser@^6.0.10
- Removedpostcss-value-parser@^4.2.0
- Removedquick-lru@^5.1.1
- Removedresolve@^1.22.0
- Removed@nodelib/fs.scandir@2.1.5(transitive)
- Removed@nodelib/fs.stat@2.0.5(transitive)
- Removed@nodelib/fs.walk@1.2.8(transitive)
- Removedacorn@7.4.1(transitive)
- Removedacorn-node@1.8.2(transitive)
- Removedacorn-walk@7.2.0(transitive)
- Removedanymatch@3.1.3(transitive)
- Removedarg@5.0.2(transitive)
- Removedbinary-extensions@2.3.0(transitive)
- Removedbraces@3.0.3(transitive)
- Removedcamelcase-css@2.0.1(transitive)
- Removedchokidar@3.6.0(transitive)
- Removedcolor-name@1.1.4(transitive)
- Removedcssesc@3.0.0(transitive)
- Removeddefined@1.0.1(transitive)
- Removeddetective@5.2.1(transitive)
- Removeddidyoumean@1.2.2(transitive)
- Removeddlv@1.1.3(transitive)
- Removedfast-glob@3.3.3(transitive)
- Removedfastq@1.19.0(transitive)
- Removedfill-range@7.1.1(transitive)
- Removedfsevents@2.3.3(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedglob-parent@5.1.26.0.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedis-binary-path@2.1.0(transitive)
- Removedis-core-module@2.16.1(transitive)
- Removedis-extglob@2.1.1(transitive)
- Removedis-glob@4.0.3(transitive)
- Removedis-number@7.0.0(transitive)
- Removedlilconfig@2.1.0(transitive)
- Removedmerge2@1.4.1(transitive)
- Removedmicromatch@4.0.8(transitive)
- Removedminimist@1.2.8(transitive)
- Removednanoid@3.3.8(transitive)
- Removednormalize-path@3.0.0(transitive)
- Removedobject-hash@3.0.0(transitive)
- Removedpath-parse@1.0.7(transitive)
- Removedpicocolors@1.1.1(transitive)
- Removedpicomatch@2.3.1(transitive)
- Removedpostcss@8.5.1(transitive)
- Removedpostcss-js@4.0.1(transitive)
- Removedpostcss-load-config@3.1.4(transitive)
- Removedpostcss-nested@5.0.6(transitive)
- Removedpostcss-selector-parser@6.1.2(transitive)
- Removedpostcss-value-parser@4.2.0(transitive)
- Removedqueue-microtask@1.2.3(transitive)
- Removedquick-lru@5.1.1(transitive)
- Removedreaddirp@3.6.0(transitive)
- Removedresolve@1.22.10(transitive)
- Removedreusify@1.0.4(transitive)
- Removedrun-parallel@1.2.0(transitive)
- Removedsource-map-js@1.2.1(transitive)
- Removedsupports-preserve-symlinks-flag@1.0.0(transitive)
- Removedto-regex-range@5.0.1(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removedxtend@4.0.2(transitive)
- Removedyaml@1.10.2(transitive)