{
  "name": "@wise/components-theming",
  "version": "1.10.1",
  "description": "Provides theming support for the Wise Design system components",
  "license": "Apache-2.0",
  "keywords": [
    "wise"
  ],
  "repository": {
    "type": "git",
    "fullname": "transferwise/neptune-web",
    "url": "git+https://github.com/transferwise/neptune-web.git"
  },
  "dependencies": {
    "@babel/runtime": "^7.28.4",
    "clsx": "^2.1.1"
  },
  "devDependencies": {
    "@babel/core": "^7.28.5",
    "@babel/plugin-transform-runtime": "^7.28.5",
    "@babel/preset-env": "^7.28.5",
    "@babel/preset-react": "^7.28.5",
    "@babel/preset-typescript": "^7.28.5",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.1",
    "@tsconfig/recommended": "^1.0.13",
    "@types/babel__core": "^7.20.5",
    "@types/jest": "^30.0.0",
    "@types/react": "^18.3.23",
    "@types/react-dom": "^18.3.7",
    "@wise/eslint-config": "^13.3.0",
    "eslint": "^9.39.2",
    "jest": "^30.2.0",
    "jest-environment-jsdom": "^29.7.0",
    "rollup": "^4.54.0",
    "rollup-preserve-directives": "^1.1.3",
    "@wise/wds-configs": "0.0.0"
  },
  "peerDependencies": {
    "react": ">=18",
    "react-dom": ">=18"
  },
  "sideEffects": [
    "*.css"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist/",
    "src/",
    "!**/*.tsbuildinfo"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "rollup --config --sourcemap",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "pnpm run lint:check",
    "lint:check": "npm-run-all --parallel lint:check:*",
    "lint:check:format": "prettier --check --ignore-path ../../.prettierignore .",
    "lint:check:js+ts": "eslint .",
    "lint:check:types": "tsc --noEmit --emitDeclarationOnly false",
    "lint:fix": "npm-run-all --serial lint:fix:*",
    "lint:fix:format": "prettier --write --ignore-path ../../.prettierignore .",
    "lint:fix:js+ts": "pnpm run lint:check:js+ts --fix"
  }
}