Files
upstash__context7/package.json
T

62 lines
1.9 KiB
JSON
Raw Normal View History

2025-03-30 10:14:50 +03:00
{
"name": "@upstash/context7",
"private": true,
"version": "1.0.0",
"description": "Context7 monorepo - Documentation tools and SDKs",
"workspaces": [
"packages/*"
],
2025-03-30 10:14:50 +03:00
"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"
2025-03-30 10:14:50 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/context7.git"
2025-03-30 10:14:50 +03:00
},
2025-04-19 14:53:04 +03:00
"keywords": [
"modelcontextprotocol",
"mcp",
"context7",
"vibe-coding",
"developer tools",
"documentation",
"context"
2025-04-19 14:53:04 +03:00
],
"author": "abdush",
2025-03-30 10:14:50 +03:00
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/context7/issues"
2025-03-30 10:14:50 +03:00
},
"homepage": "https://github.com/upstash/context7#readme",
2025-03-30 10:14:50 +03:00
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.0.3",
2025-03-30 10:14:50 +03:00
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.34.0",
2025-03-30 10:14:50 +03:00
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.5.6",
"prettier": "^3.6.2",
2025-03-30 10:14:50 +03:00
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
feat(cli): add interactive skill generation wizard (#1572) * generate skills * feat: add generate questions methods * feat(cli): improve skill generation UX with streaming feedback - Add real-time query results display during generation - Collapse answered questions to show summary - Separate query phase spinner from generation spinner - Add skill preview with expand option - Remove legacy generateSkill function - Clean up redundant comments * feat(cli): improve skill generation UX with streaming feedback - Add real-time query results display during generation - Collapse answered questions to show summary - Separate query phase spinner from generation spinner - Add skill preview with expand option - Remove legacy generateSkill function - Clean up redundant comments * feat(cli): optimize feedback regeneration and clean up UI - Add previousContent to StructuredGenerateInput for efficient feedback - Remove redundant "Selected X libraries" log message - Consolidate menu options (remove "Regenerate completely") - Update feedback prompt with skip hint * feat(cli): add skill generation with quota and improved display - Add skill quota checking before generation - Fix tool result display timing issue - Show library project IDs in selection to avoid confusion - Improve generation spinner with query log display * docs(cli): add 0.2.0 changelog entry * fix(cli): switch userinfo endpoint from dev to production * docs(cli): add skill generation and auth sections to README * fix(sdk): increase timeout for sequential search test * chore(cli): replace manual changelog with changeset for skill generation
2026-01-29 11:46:45 +03:00
},
"dependencies": {
"@inquirer/core": "^11.1.1",
"@inquirer/type": "^4.0.3"
2025-03-30 10:14:50 +03:00
}
}