context7/package.json
Fahreddin Özcan f820f7fecd
CTX7-879: Context7 Vercel AI SDK Tools (#1122)
* feat: context7 vercel ai sdk tools package

* ci: remove master target condition on test action

* ci: manual actions trigger for test

* ci: always run all tests

* update tests and imports

* ci: typecheck command

* fix: tests

* docs: add readme

* update folder structure and tool descriptions

* tests: fix test env vars

* ci: bump pnpm version

* update ai sdk step count api

* Add stopWhen to docstring examples

* update tests

* update prompt name

* update context7 agent name

* update tool description var to description

* make context7agent config optional

* ci: add changeset

* make context7-sdk peer deps

* update pnpm-lock.yaml

* update package name to @upstash/context7-tools-ai-sdk

* remove check workflow

* update pnpm lock

* make the agent a class instead of function

* replace all name instances

* add agent generate test

* simplify agent config

* fix refs
2025-12-09 14:45:01 -08:00

58 lines
1.8 KiB
JSON

{
"name": "@upstash/context7",
"private": true,
"version": "1.0.0",
"description": "Context7 monorepo - Documentation tools and SDKs",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r run build",
"build:sdk": "pnpm --filter @upstash/context7-sdk build",
"build:mcp": "pnpm --filter @upstash/context7-mcp build",
"build:ai-sdk": "pnpm --filter @upstash/context7-tools-ai-sdk build",
"typecheck": "pnpm -r run typecheck",
"test": "pnpm -r run test",
"test:sdk": "pnpm --filter @upstash/context7-sdk test",
"test:tools-ai-sdk": "pnpm --filter @upstash/context7-tools-ai-sdk test",
"clean": "pnpm -r run clean && rm -rf node_modules",
"lint": "pnpm -r run lint",
"lint:check": "pnpm -r run lint:check",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"release": "pnpm build && changeset publish",
"release:snapshot": "changeset version --snapshot canary && pnpm build && changeset publish --tag canary --no-git-tag"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/context7.git"
},
"keywords": [
"modelcontextprotocol",
"mcp",
"context7",
"vibe-coding",
"developer tools",
"documentation",
"context"
],
"author": "abdush",
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/context7/issues"
},
"homepage": "https://github.com/upstash/context7#readme",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"prettier": "^3.6.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}