mirror of
https://github.com/backnotprop/plannotator.git
synced 2026-09-14 14:17:26 +08:00
4e654f369d
- Rename apps/hooks → apps/hook (singular) - Add .claude-plugin/plugin.json manifest - Add hooks/hooks.json for PermissionRequest hook - Add root .claude-plugin/marketplace.json for install via: /plugin marketplace add backnotprop/plannotator - Refactor server to read stdin directly (removes bash/jq dependency) - Delete shell wrapper script Plugin tested successfully with: claude --plugin-dir ./apps/hook 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
702 B
JSON
30 lines
702 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@plannotator/ui/*": ["../../packages/ui/*"],
|
|
"@plannotator/editor": ["../../packages/editor/App.tsx"],
|
|
"@plannotator/editor/*": ["../../packages/editor/*"]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
}
|
|
} |