{
  "amp": {
    "releaseTag": "legacy"
  },
  "author": {
    "name": "The Amp Team",
    "email": "amp-devs@ampcode.com"
  },
  "bin": {
    "amp-sdk": "bin/amp-sdk.js"
  },
  "dependencies": {
    "@ampcode/cli": "latest",
    "zod": "^3.23.8"
  },
  "description": "TypeScript SDK for Amp CLI - Build custom AI agents with Amp's capabilities",
  "engines": {
    "node": ">=18"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "bin/amp-sdk.js",
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "!dist/**/*.map",
    "README.md"
  ],
  "homepage": "https://ampcode.com/",
  "keywords": [
    "ai",
    "agent",
    "amp",
    "sourcegraph",
    "cli",
    "typescript",
    "sdk",
    "automation"
  ],
  "license": "Amp Commercial License",
  "main": "dist/index.js",
  "name": "@ampcode/sdk",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ampcode/amp.git",
    "directory": "sdk/typescript"
  },
  "type": "module",
  "types": "dist/index.d.ts",
  "version": "0.1.0-20260724142523-g5b0a5e3",
  "scripts": {
    "build": "bun run scripts/build.ts",
    "dev": "pnpm exec tsc -b --watch",
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "cli:install": "node ./bin/amp-sdk.js install",
    "test_integration": "pnpm run build && bun run tests/integration/runner.ts --",
    "format:check": "biome format --config-path=../.. src scripts tests/integration bin",
    "lint": "biome check --config-path=../.. src scripts tests/integration bin",
    "test": "vitest run",
    "typecheck": "tsgo -b",
    "test:watch": "vitest"
  }
}