managarten/packages/shared-help-ui/package.json
Till-JS 1dda437192 feat(help): add centralized help system with shared packages
- Add @manacore/shared-help-types with TypeScript types and Zod schemas
- Add @manacore/shared-help-content with Markdown parser, content loader, and Fuse.js search
- Add @manacore/shared-help-ui with Svelte 5 components (HelpPage, FAQSection, FeaturesOverview, etc.)
- Add @manacore/shared-help-mobile with React Native components for Expo apps
- Add help translations to shared-i18n (de, en, fr, it, es)
- Implement self-contained help page in Contacts app with FAQ, Features, Shortcuts, and Contact sections
- Support i18n with German and English content

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-09 20:24:22 +01:00

65 lines
1.8 KiB
JSON

{
"name": "@manacore/shared-help-ui",
"version": "1.0.0",
"private": true,
"type": "module",
"svelte": "./src/index.ts",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"svelte": "./src/index.ts",
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./HelpPage.svelte": {
"svelte": "./src/pages/HelpPage.svelte",
"default": "./src/pages/HelpPage.svelte"
},
"./FAQSection.svelte": {
"svelte": "./src/components/FAQSection.svelte",
"default": "./src/components/FAQSection.svelte"
},
"./FeaturesOverview.svelte": {
"svelte": "./src/components/FeaturesOverview.svelte",
"default": "./src/components/FeaturesOverview.svelte"
},
"./KeyboardShortcuts.svelte": {
"svelte": "./src/components/KeyboardShortcuts.svelte",
"default": "./src/components/KeyboardShortcuts.svelte"
},
"./GettingStartedGuide.svelte": {
"svelte": "./src/components/GettingStartedGuide.svelte",
"default": "./src/components/GettingStartedGuide.svelte"
},
"./ChangelogSection.svelte": {
"svelte": "./src/components/ChangelogSection.svelte",
"default": "./src/components/ChangelogSection.svelte"
},
"./ContactSection.svelte": {
"svelte": "./src/components/ContactSection.svelte",
"default": "./src/components/ContactSection.svelte"
},
"./HelpSearch.svelte": {
"svelte": "./src/components/HelpSearch.svelte",
"default": "./src/components/HelpSearch.svelte"
}
},
"scripts": {
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint ."
},
"dependencies": {
"@manacore/shared-help-types": "workspace:*",
"@manacore/shared-help-content": "workspace:*",
"@manacore/shared-icons": "workspace:*"
},
"devDependencies": {
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"svelte": "^5.0.0"
}
}