Files

37 lines
1.1 KiB
JSON

{
"name": "@plannotator/guide-viewer",
"version": "0.0.1",
"type": "module",
"description": "Guided Review renderer shared by the Plannotator review app and portable guide exports.",
"exports": {
".": "./index.ts",
"./types": "./types.ts",
"./diffParser": "./diffParser.ts",
"./renderInlineMarkdown": "./renderInlineMarkdown.tsx",
"./renderMarkdownProse": "./renderMarkdownProse.tsx",
"./host": "./host.tsx",
"./GuideView": "./GuideView.tsx",
"./GuideSectionCard": "./GuideSectionCard.tsx",
"./GuideFileCard": "./GuideFileCard.tsx",
"./GuideViewportManager": "./GuideViewportManager.tsx",
"./GuideSkeleton": "./GuideSkeleton.tsx",
"./GuideViewer": "./GuideViewer.tsx"
},
"files": ["**/*.ts", "**/*.tsx", "!**/*.test.ts", "!**/*.test.tsx"],
"dependencies": {
"@plannotator/core": "workspace:*",
"lucide-react": "^1.38.0"
},
"peerDependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"typescript": "~5.8.2"
}
}