mirror of
https://github.com/ZSeven-W/openpencil.git
synced 2026-06-01 03:14:29 +07:00
The `op export` command was removed in 0.7.x but the README still advertised it (#116). The pen-mcp README also documented an `npx @zseven-w/pen-mcp` quick-start that never worked because the package ships TypeScript source against workspace-only deps with no `bin` entry (#117). - Strip `op export` references from all 15 root and 15 cli READMEs - Sync AGENTS.md, CLAUDE.md, apps/cli/CLAUDE.md to match the codegen- pipeline reality (no standalone export command anymore) - Rewrite pen-mcp README's quick-start: explain the package ships as part of the OpenPencil app and external clients connect over HTTP Closes #116 Closes #117
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@zseven-w/pen-mcp",
|
|
"version": "0.7.5",
|
|
"description": "MCP server, document manager, and tools for OpenPencil",
|
|
"homepage": "https://github.com/ZSeven-W/openpencil/tree/main/packages/pen-mcp",
|
|
"bugs": {
|
|
"url": "https://github.com/ZSeven-W/openpencil/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "ZSeven-W",
|
|
"email": "xkayshen@gmail.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ZSeven-W/openpencil.git",
|
|
"directory": "packages/pen-mcp"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@iconify-json/feather": "^1.2.1",
|
|
"@iconify-json/lucide": "^1.2.93",
|
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
"@zseven-w/pen-ai-skills": "workspace:*",
|
|
"@zseven-w/pen-core": "workspace:*",
|
|
"@zseven-w/pen-engine": "workspace:*",
|
|
"@zseven-w/pen-types": "workspace:*",
|
|
"nanoid": "^5.1.6"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|