{
  "name": "@reskill/agent-aware-server",
  "version": "0.4.1",
  "description": "Agent-aware RUM Server - HTTP API for user behavior tracking",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "agent-aware-server": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kanyun-inc/agent-aware.git",
    "directory": "packages/server"
  },
  "author": "Kanyun Inc",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kanyun-inc/agent-aware/issues"
  },
  "homepage": "https://github.com/kanyun-inc/agent-aware/tree/main/packages/server#readme",
  "dependencies": {
    "@hono/node-server": "^1.13.0",
    "hono": "^4.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0",
    "vitest": "^2.1.0"
  },
  "keywords": [
    "rum",
    "agent-aware",
    "user-behavior",
    "ai"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx watch src/cli.ts start",
    "start": "node dist/cli.js start",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  }
}