openpencil/packages/pen-ai-skills/package.json
Kayshen-X c4e5359596 docs: drop op export from CLI docs and clarify pen-mcp usage
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
2026-04-26 19:20:14 +08:00

47 lines
1.2 KiB
JSON

{
"name": "@zseven-w/pen-ai-skills",
"version": "0.7.5",
"homepage": "https://github.com/ZSeven-W/openpencil/tree/main/packages/pen-ai-skills",
"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-ai-skills"
},
"files": [
"src",
"skills",
"vite-plugin-skills.ts"
],
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
},
"./vite-plugin": {
"types": "./vite-plugin-skills.ts",
"import": "./vite-plugin-skills.ts"
},
"./style-guide": {
"types": "./src/style-guide/index.ts",
"import": "./src/style-guide/index.ts"
},
"./_generated/style-guide-registry": {
"types": "./src/_generated/style-guide-registry.ts",
"import": "./src/_generated/style-guide-registry.ts"
}
},
"dependencies": {
"@zseven-w/pen-types": "workspace:*",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1"
}
}