UNPKG

@daikin-oss/tailwind

Version:

Tailwind plugin using DDS design tokens

82 lines (81 loc) 2.12 kB
{ "name": "@daikin-oss/tailwind", "version": "0.3.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 ." }, "devDependencies": { "@arethetypeswrong/cli": "^0.17.1", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.11", "@daikin-oss/dds-tokens": "^0.3.1", "@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", "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 <1.0.0", "tailwindcss": "^3.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" } }