mirror of
https://gh.wpcy.net/https://github.com/verygoodplugins/mcp-freescout.git
synced 2026-07-16 19:36:23 +08:00
Replaced custom Markdown-to-HTML logic with the 'marked' library for more robust formatting in FreeScout API. Added support for 'state' and 'assignee' filters in conversation search/list endpoints. Updated CLI tool to default to 'published' state, handle unassigned ticket queries, and filter deleted tickets client-side. Added AGENTS.md with project guidelines and updated .gitignore for local settings. Updated dependencies in package.json to include 'marked'.
50 lines
523 B
Text
50 lines
523 B
Text
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
*.js
|
|
*.js.map
|
|
*.d.ts
|
|
!src/**/*.d.ts
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Git worktrees (created by the tool)
|
|
worktrees/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Package manager files
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
.claude/settings.local.json
|