123 lines
3.3 KiB
JSON
123 lines
3.3 KiB
JSON
{
|
|
"name": "tailwind-variants",
|
|
"version": "3.2.2",
|
|
"description": "🦄 Tailwindcss first-class variant API",
|
|
"keywords": [
|
|
"tailwindcss",
|
|
"classes",
|
|
"responsive",
|
|
"variants",
|
|
"styled",
|
|
"styles"
|
|
],
|
|
"author": "Junior Garcia <jrgarciadev@gmail.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/heroui-inc/tailwind-variants"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/heroui-inc/tailwind-variants/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./lite": {
|
|
"types": "./dist/lite.d.ts",
|
|
"import": "./dist/lite.js",
|
|
"require": "./dist/lite.cjs"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/utils.d.ts",
|
|
"import": "./dist/utils.js",
|
|
"require": "./dist/utils.cjs"
|
|
},
|
|
"./dist/*": "./dist/*",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsup --watch",
|
|
"build": "tsup && node copy-types.cjs",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepack": "clean-package",
|
|
"benchmark": "node benchmark.js",
|
|
"postpack": "clean-package restore",
|
|
"lint": "eslint . src/**/*.{js,ts}",
|
|
"lint:fix": "eslint --fix . src/**/*.{js,ts}",
|
|
"test": "jest --verbose",
|
|
"test:watch": "jest --watch --no-verbose",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
|
|
"release": "bumpp --execute='pnpm run changelog' --all",
|
|
"prepublishOnly": "pnpm run build",
|
|
"release:check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.5.0",
|
|
"@commitlint/config-conventional": "19.5.0",
|
|
"@jest/globals": "29.7.0",
|
|
"@swc-node/jest": "1.8.12",
|
|
"@swc/cli": "0.5.0",
|
|
"@swc/core": "1.9.2",
|
|
"@swc/helpers": "0.5.15",
|
|
"@swc/jest": "0.2.37",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "22.9.0",
|
|
"@typescript-eslint/eslint-plugin": "8.14.0",
|
|
"@typescript-eslint/parser": "8.14.0",
|
|
"benchmark": "2.1.4",
|
|
"bumpp": "10.2.0",
|
|
"changelogithub": "13.16.0",
|
|
"class-variance-authority": "0.7.0",
|
|
"clean-package": "2.2.0",
|
|
"conventional-changelog-cli": "5.0.0",
|
|
"eslint": "8.57.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-config-ts-lambdas": "1.2.3",
|
|
"eslint-import-resolver-typescript": "3.6.3",
|
|
"eslint-plugin-import": "2.31.0",
|
|
"eslint-plugin-jest": "28.9.0",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-prettier": "5.2.1",
|
|
"eslint-plugin-promise": "7.1.0",
|
|
"expect": "29.7.0",
|
|
"jest": "29.7.0",
|
|
"postcss": "8.5.6",
|
|
"prettier": "3.3.3",
|
|
"prettier-eslint": "16.3.0",
|
|
"prettier-eslint-cli": "8.0.1",
|
|
"tailwindcss": "4.1.11",
|
|
"ts-node": "10.9.2",
|
|
"tsup": "8.5.0",
|
|
"typescript": "5.6.3"
|
|
},
|
|
"peerDependencies": {
|
|
"tailwind-merge": ">=3.0.0",
|
|
"tailwindcss": "*"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"tailwind-merge": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=16.x",
|
|
"pnpm": ">=7.x"
|
|
}
|
|
}
|