{
  "name": "pondsh",
  "version": "0.5.2",
  "description": "Agent-native CLI and runtime for building small full-stack TypeScript apps. Hosted Lakebed-style anonymous deploys included.",
  "license": "MIT",
  "author": "DevvGwardo (https://github.com/DevvGwardo)",
  "homepage": "https://github.com/DevvGwardo/pond#readme",
  "bugs": {
    "url": "https://github.com/DevvGwardo/pond/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DevvGwardo/pond.git"
  },
  "type": "module",
  "bin": {
    "pond": "./bin/pond.js",
    "pondsh": "./bin/pondsh.js",
    "pond-mcp": "./bin/pond-mcp.js"
  },
  "exports": {
    ".": "./src/index.js",
    "./server": "./src/server/index.js",
    "./client": "./client/index.js"
  },
  "files": [
    "bin/",
    "src/",
    "client/",
    "docs/*.md",
    "docs/*.txt"
  ],
  "scripts": {
    "build": "node scripts/build-ide.mjs && node scripts/build-llms.mjs && tsc",
    "build:ide": "node scripts/build-ide.mjs",
    "build:llms": "node scripts/build-llms.mjs",
    "dev": "tsc --watch",
    "test": "npm run build && node --test test/*.test.mjs",
    "lint": "eslint .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "prepublishOnly": "npm run build",
    "prepare": "husky || true"
  },
  "dependencies": {
    "@hono/node-server": "^2.0.4",
    "arctic": "^3.7.0",
    "better-sqlite3": "^11.7.2",
    "chokidar": "^4.0.0",
    "citty": "^0.1.6",
    "cross-spawn": "^7.0.6",
    "esbuild": "^0.25.0",
    "hono": "^4.6.0",
    "jose": "^6.2.3",
    "marked": "^18.0.4",
    "preact": "^10.24.0",
    "preact-render-to-string": "^6.5.0",
    "ws": "^8.21.0"
  },
  "devDependencies": {
    "@codemirror/commands": "^6.10.3",
    "@codemirror/lang-javascript": "^6.2.5",
    "@codemirror/lang-json": "^6.0.2",
    "@codemirror/lang-markdown": "^6.5.0",
    "@codemirror/language": "^6.12.3",
    "@codemirror/search": "^6.7.0",
    "@codemirror/state": "^6.6.0",
    "@codemirror/theme-one-dark": "^6.1.3",
    "@codemirror/view": "^6.43.0",
    "@types/better-sqlite3": "^7.6.0",
    "@types/cross-spawn": "^6.0.6",
    "@types/ws": "^8.18.1",
    "codemirror": "^6.0.2",
    "eslint": "^9.39.4",
    "eslint-plugin-react-hooks": "^5.2.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.5",
    "prettier": "^3.8.3",
    "typescript": "^5.7.0",
    "typescript-eslint": "^8.60.0"
  },
  "keywords": [
    "agents",
    "agent-native",
    "app-runtime",
    "runtime",
    "cli",
    "pond",
    "typescript",
    "full-stack",
    "capsule",
    "deploy",
    "serverless",
    "multi-tenant",
    "hono",
    "sqlite",
    "preact"
  ],
  "engines": {
    "node": ">=18"
  },
  "lint-staged": {
    "*.{ts,tsx,js,mjs,json,md,yml,yaml,css}": "prettier --write"
  }
}
