{
  "name": "@bitmonk8/pi-theta",
  "version": "0.12.0",
  "private": false,
  "description": "A scripting language for Pi agents: write the predictable parts of an agent task as code and leave only the fuzzy parts to the model.",
  "files": [
    "extensions",
    "src",
    "skills",
    "README.md",
    "LICENSE-APACHE",
    "LICENSE-MIT"
  ],
  "keywords": [
    "pi-package",
    "pi",
    "pi-coding-agent",
    "pi-extension",
    "extension",
    "theta",
    "scripting-language",
    "dsl",
    "agent",
    "subagent",
    "prompt-engineering",
    "loop-engineering"
  ],
  "author": "Thomas Andersen <thomas.andersen@gmail.com>",
  "license": "MIT OR Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/bitmonk8/pi-theta.git"
  },
  "type": "module",
  "pi": {
    "extensions": ["./extensions"],
    "skills": ["./skills"]
  },
  "engines": {
    "node": ">=22.19.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "eslint --no-error-on-unmatched-pattern \"src/**/*.ts\"",
    "test": "vitest run",
    "test:live": "vitest run --config config/vitest/vitest.live.config.ts",
    "test:acceptance": "vitest run --config config/vitest/vitest.acceptance.config.ts",
    "test:conformance": "vitest run --config config/vitest/vitest.conformance.config.ts"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "chokidar": "^4.0.1",
    "minimatch": "^10.0.1",
    "semver": "^7.6.0",
    "yaml": "^2.9.0"
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "~0.80.10",
    "@earendil-works/pi-agent-core": "~0.80.10",
    "@earendil-works/pi-ai": "~0.80.10",
    "@earendil-works/pi-tui": "~0.80.10",
    "@types/node": "^22.0.0",
    "@types/semver": "^7.5.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "eslint-plugin-theta-local": "file:./tools/eslint-plugin-theta-local",
    "typescript": "^5.4.0",
    "vitest": "^2.1.8"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.80.8",
    "@earendil-works/pi-agent-core": ">=0.80.8",
    "@earendil-works/pi-ai": ">=0.80.8",
    "@earendil-works/pi-tui": ">=0.80.8",
    "typebox": "*"
  }
}
