{
  "name": "psadk",
  "email": "rakesh.ravuri@publicissapient.com",
  "version": "1.5.9",
  "description": "ps adk adapter",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "exports": {
    ".": {
      "types": "./build/main/index.d.ts",
      "import": "./build/module/index.js",
      "default": "./build/main/index.js"
    },
    "./agent-core": {
      "types": "./build/module/lib/agent-core/index.d.ts",
      "import": "./build/module/lib/agent-core/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://pscode.lioncloud.net/agents/psadk.git"
  },
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "build": "run-p build:main build:module && node scripts/post-build.js",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint src --ext .ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "local-agent-test": "npm run build && node --input-type=module --eval \"import('./examples/local-agent-test.ts')\"",
    "spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
    "test:unit": "nyc --silent ava",
    "check-cli": "run-s test diff-integration-tests check-integration-tests",
    "check-integration-tests": "run-s check-integration-test:*",
    "diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:test": "nyc --silent ava --watch",
    "cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:lcov": "nyc report --reporter=lcov",
    "cov:send": "run-s cov:lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s doc:html && open-cli docs/index.html",
    "doc:md": "typedoc src/ --plugin typedoc-plugin-markdown --exclude **/*.spec.ts --out docs",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --out docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --json build/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "version": "standard-version",
    "reset-hard": "git clean -dfx && git reset --hard && yarn",
    "prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
  },
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "@a2a-js/sdk": "^0.3.13",
    "@earendil-works/pi-ai": "^0.74.0",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "cors": "^2.8.6",
    "debug": "^4.4.3",
    "express": "^5.2.1",
    "fetch-retry": "^6.0.0",
    "gray-matter": "^4.0.3",
    "ignore": "^7.0.5",
    "jsonwebtoken": "^9.0.3",
    "open": "^10.1.0",
    "typebox": "^1.1.38",
    "uuid": "^13.0.0",
    "yaml": "^2.8.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@ava/typescript": "^6.0.0",
    "@dotenvx/dotenvx": "^1.61.0",
    "@eslint/compat": "^2.0.5",
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^9.39.4",
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/cors": "^2.8.19",
    "@types/debug": "^4.1.13",
    "@types/express": "^5.0.6",
    "@types/jsonwebtoken": "^9.0.10",
    "@typescript-eslint/eslint-plugin": "^8.58.1",
    "ava": "^7.0.0",
    "codecov": "^3.8.3",
    "cspell": "^10.0.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^9.0.4",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.5",
    "gh-pages": "^6.3.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^18.0.0",
    "open-cli": "^9.0.0",
    "prettier": "^3.8.1",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.2",
    "tsdoc-markdown": "^1.4.1",
    "tsx": "^4.21.0",
    "typedoc": "^0.28.18",
    "typedoc-plugin-markdown": "^4.11.0",
    "typescript": "^5.9.3",
    "undici-types": "^8.3.0"
  },
  "files": [
    "build/main",
    "build/module",
    "!**/*.spec.*",
    "!**/*.json",
    "build/main/lib/agent-core/package.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "ava": {
    "failFast": true,
    "timeout": "60s",
    "typescript": {
      "rewritePaths": {
        "src/": "build/main/"
      },
      "compile": false
    },
    "files": [
      "!build/module/**"
    ]
  },
  "config": {},
  "prettier": {
    "singleQuote": true
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  }
}
