{
  "version": "0.18.0",
  "name": "modality-kit",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/react-atomic/modality.git"
  },
  "homepage": "https://github.com/react-atomic/modality/tree/main/modality-kit",
  "description": "A TypeScript-based toolkit for building web applications and managing communication with a backend server. It provides a set of utilities and components for handling JSON-RPC messages, managing pending operations, and creating reactive web components.",
  "keywords": [
    "modality-kit"
  ],
  "author": "Hill <hill@kimo.com>",
  "license": "ISC",
  "devDependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "modality-bun-kit": "^1.3.14",
    "zod": "^4.4.3"
  },
  "exports": {
    "types": "./dist/types/index.d.ts",
    "require": "./dist/index.js",
    "import": "./dist/index.js"
  },
  "types": "./dist/types/index.d.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "scripts": {
    "build:clean": "find ./dist -name '*.*' | xargs rm -rf",
    "build:types": "bun tsc -p ./",
    "build:src": "bun build src/index.ts --outdir dist --target=node",
    "build": "bun run build:clean && bun run build:types && bun run build:src",
    "dev": "bunx concurrently 'bun --watch tsc  -p ./' 'bun build:src -- --watch --sourcemap=inline'",
    "test": "npm run build && bun test",
    "prepublishOnly": "npm t"
  },
  "files": [
    "package.json",
    "README.md",
    "dist"
  ]
}
