{ "name": "@alga-psa/agent-tooling", "version": "0.1.0", "private": true, "description": "Shared agent tool-definition engine: API registry, ranked search, request-building, and the MCP/chat meta-tool definitions. Mechanism only — no LLM, transport, or governance.", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./src/index.ts", "types": "./src/index.ts" }, "./registry/schema": { "import": "./src/registry/schema.ts", "types": "./src/registry/schema.ts" }, "./registry/search": { "import": "./src/registry/search.ts", "types": "./src/registry/search.ts" }, "./invoke/buildRequest": { "import": "./src/invoke/buildRequest.ts", "types": "./src/invoke/buildRequest.ts" }, "./tools/definitions": { "import": "./src/tools/definitions.ts", "types": "./src/tools/definitions.ts" } }, "scripts": { "build": "tsup", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit" }, "devDependencies": { "tsup": "^8.0.0", "typescript": "^5.3.0" } }