{
  "name": "@stratakit/foundations",
  "type": "module",
  "version": "0.4.9",
  "license": "MIT",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "@stratakit/source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "development": "./dist/DEV/index.js",
      "default": "./dist/index.js"
    },
    "./secret-internals": {
      "@stratakit/source": "./src/secret-internals.ts",
      "types": "./dist/secret-internals.d.ts",
      "development": "./dist/DEV/secret-internals.js",
      "default": "./dist/secret-internals.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "LICENSE.md"
  ],
  "description": "Foundational pieces of StrataKit",
  "author": "Bentley Systems",
  "homepage": "https://github.com/iTwin/stratakit",
  "repository": {
    "type": "git",
    "url": "https://github.com/iTwin/stratakit.git",
    "directory": "packages/foundations"
  },
  "keywords": [
    "component",
    "components",
    "design-system",
    "design",
    "frontend",
    "itwin",
    "itwinui",
    "strata",
    "stratakit",
    "react",
    "ui",
    "tokens"
  ],
  "dependencies": {
    "@ariakit/react": "^0.4.29",
    "classnames": "^2.5.1",
    "react-compiler-runtime": "^1.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.19.19",
    "@types/react": "^19.2.16",
    "@types/react-dom": "^19.2.3",
    "esbuild": "^0.28.0",
    "lightningcss": "^1.32.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "typescript": "~6.0.3"
  },
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "wireit": {
    "build": {
      "dependencies": [
        "build:js",
        "build:DEV",
        "build:types"
      ]
    },
    "build:js": {
      "command": "node scripts/build.js",
      "files": [
        "src",
        "scripts",
        "../../internal",
        "../bricks/src/*.css",
        "../structures/src/*.css"
      ],
      "output": [
        "dist/**/*.js",
        "!dist/DEV"
      ]
    },
    "build:DEV": {
      "command": "node scripts/build.js",
      "files": [
        "src",
        "scripts",
        "../../internal",
        "../bricks/src/*.css",
        "../structures/src/*.css"
      ],
      "output": [
        "dist/DEV/**/*.js"
      ],
      "env": {
        "NODE_ENV": "development"
      }
    },
    "build:types": {
      "command": "tsc --outDir dist",
      "files": [
        "src"
      ],
      "output": [
        "dist/**/*.d.ts"
      ]
    },
    "dev": {
      "command": "tsc --watch --outDir dist",
      "files": [
        "src"
      ],
      "service": true
    }
  },
  "scripts": {
    "build": "wireit",
    "dev": "wireit"
  }
}