{
  "name": "@kaizen/design-tokens",
  "description": "Tokens used in the Kaizen Design System",
  "version": "11.0.12",
  "homepage": "https://github.com/cultureamp/kaizen-design-system/tree/main/packages/design-tokens",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cultureamp/kaizen-design-system.git"
  },
  "bugs": {
    "url": "https://github.com/cultureamp/kaizen-design-system/issues"
  },
  "files": [
    "sass",
    "less",
    "css",
    "js",
    "dist"
  ],
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "private": false,
  "license": "MIT",
  "sideEffects": true,
  "dependencies": {
    "color-string": "1.9.1",
    "lodash.kebabcase": "^4.1.1"
  },
  "dependenciesComments": {
    "color-string": "Version locked at 1.9.1 as 2.x will break implementation of older repos that are using the ThemeProvider (https://cultureamp.slack.com/archives/C0189KBPM4Y/p1742787520546679) - we will remove this in KAIO 2.0 so we can upgrade to 2.x then if still needed"
  },
  "devDependencies": {
    "@cultureamp/package-bundler": "^4.0.1",
    "@types/color-string": "^1.5.5",
    "@types/lodash.flatmap": "^4.5.9",
    "@types/lodash.kebabcase": "^4.1.9",
    "@types/react-highlight": "^0.12.8",
    "json-to-flat-sass": "^1.0.0",
    "lodash.flatmap": "^4.5.0",
    "object-to-css-variables": "^0.2.1",
    "postcss": "^8.5.15",
    "prettier": "*",
    "react": "^19.2.7",
    "react-highlight": "^0.15.0",
    "react-map-interaction": "^2.1.0",
    "rollup": "^4.62.2",
    "tslib": "^2.8.1",
    "tsx": "^4.22.4"
  },
  "peerDependencies": {
    "react": "^18.3.1 || ^19.0.0"
  },
  "scripts": {
    "lint:ts": "tsc --noEmit",
    "test": "FORCE_COLOR=1 vitest --config ../../vite.config.ts",
    "build": "pnpm clean:dist && pnpm build:json && pnpm build:less && pnpm build:sass && pnpm build:ts",
    "build:json": "tsx ./bin/buildCssVarTokens.ts",
    "build:ts": "pnpm package-bundler build",
    "build:less": "json-to-flat-sass './tokens/*.json' 'less' --extension 'less' --caseType 'kebab' && prettier less/* --write",
    "build:sass": "json-to-flat-sass './tokens/*.json' 'sass' --extension 'scss' --caseType 'kebab' && prettier sass/* --write",
    "clean": "rimraf 'dist' 'node_modules' '.turbo'",
    "clean:dist": "rimraf 'dist'"
  }
}