Files
agentlens/packages/sdk-ts/package.json
Vectry f0ce0f7884 feat: SEO improvements and npm publish prep
- Expand sitemap from 2 to 13 URLs (all docs pages)
- Update JSON-LD featureList with Anthropic, OpenCode, TypeScript SDK
- Update llms.txt with docs links, TS SDK, OpenCode plugin sections
- Add READMEs for agentlens-sdk and opencode-agentlens packages
- Add repository, homepage, author, bugs fields to both package.json
2026-02-10 03:43:04 +00:00

57 lines
1.2 KiB
JSON

{
"name": "agentlens-sdk",
"version": "0.1.0",
"description": "AgentLens TypeScript SDK — Agent observability that traces decisions, not just API calls.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"author": "Vectry <hunter@repi.fun>",
"repository": {
"type": "git",
"url": "https://gitea.repi.fun/repi/agentlens",
"directory": "packages/sdk-ts"
},
"homepage": "https://agentlens.vectry.tech",
"bugs": {
"url": "https://gitea.repi.fun/repi/agentlens/issues"
},
"keywords": [
"agentlens",
"observability",
"tracing",
"ai-agents",
"sdk",
"typescript"
],
"devDependencies": {
"tsup": "^8.3.0",
"typescript": "^5.7.0"
}
}