mirror of
https://gh.wpcy.net/https://github.com/verygoodplugins/mcp-freescout.git
synced 2026-07-16 01:53:10 +08:00
Introduces a new loadEnv function to load environment variables quietly using dotenv, with corresponding tests. Updates index.ts to use the new loader and dynamically read the version from package.json. Relaxes ThreadSchema and ConversationSchema field requirements in types.ts to allow for more flexible and optional data structures. Updates .gitignore to exclude new token files.
53 lines
661 B
Text
53 lines
661 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 (keep lock files for reproducible builds)
|
|
# package-lock.json - REQUIRED for npm ci in CI/CD
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
.claude/settings.local.json
|
|
/.cursor
|
|
.mcpregistry_github_token
|
|
.mcpregistry_registry_token
|