UNPKG

@daikin-oss/tailwind

Version:

Tailwind plugin using DDS design tokens

87 lines (86 loc) 2.4 kB
{ "name": "@daikin-oss/tailwind", "version": "1.1.0", "description": "Tailwind plugin using DDS design tokens", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js" } }, "files": [ "dist", "LICENSE", "README.md" ], "publishConfig": { "access": "public" }, "author": "", "license": "MIT", "keywords": [ "tailwind", "plugin", "Daikin", "DDS" ], "repository": { "type": "git", "url": "git+https://github.com/dsv-rp/tailwind.git" }, "bugs": { "url": "https://github.com/dsv-rp/tailwind/issues" }, "homepage": "https://github.com/dsv-rp/tailwind", "scripts": { "prepare": "husky install", "lint": "eslint && prettier -c .", "typecheck": "tsc", "build": "tsup", "changeset-version": "changeset version && npm install --package-lock-only", "changeset-publish": "changeset publish", "test:attw": "attw --pack .", "license-check": "license-checker --summary --onlyAllow \"$npm_package_config_licenseAllowlist\"" }, "config": { "licenseAllowlist": "Apache-2.0;BlueOak-1.0.0;BSD-2-Clause;BSD-3-Clause;CC-BY-3.0;CC0-1.0;ISC;MIT;Python-2.0" }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.1", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.11", "@daikin-oss/dds-tokens": "^1.1.0", "@eslint/js": "^9.17.0", "@tokens-studio/types": "^0.5.1", "@types/eslint-config-prettier": "^6.11.3", "@types/node": "^20.17.10", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "globals": "^15.14.0", "husky": "^9.1.7", "jiti": "^2.4.2", "license-checker": "^25.0.1", "lint-staged": "^15.2.11", "prettier": "^3.4.2", "prettier-plugin-organize-imports": "^4.1.0", "tailwindcss": "^3.4.17", "tsup": "^8.3.5", "typescript": "^5.7.2", "typescript-eslint": "^8.18.1" }, "peerDependencies": { "@daikin-oss/dds-tokens": ">=0.2.1", "tailwindcss": "^3.0.0 || ^4.0.0" }, "lint-staged": { "*.js": [ "eslint --cache --cache-location node_modules/.cache/.eslintcache", "npm run test:serial -- --bail --findRelatedTests --passWithNoTests", "npm run test:gql-schema" ], "*.{js,css,md,json,yml,html}": "prettier --write" } }