- Add @tpmjs/tools-resend with email API tools and blocks.yml entries - Add MCP route for collection skill discovery - Add InstallationSection component for collections - Refactor collection pages to use shared components and simplify layouts - Update skills questions API, rate limiting, and API key handling - Add tpmjs-tool-creator skill for Claude - Update video feature scenes and fix lint issues - Update .gitignore with IDE and temp file exclusions
87 lines
945 B
Text
87 lines
945 B
Text
# dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# next.js
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
|
|
# misc
|
|
.DS_Store
|
|
|
|
# video files
|
|
*.mp4
|
|
*.webm
|
|
*.mov
|
|
*.avi
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment files - NEVER commit secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.local
|
|
.env.development
|
|
.env.development.local
|
|
.env.test
|
|
.env.test.local
|
|
.env.production
|
|
.env.production.local
|
|
.env.staging
|
|
.env.vercel*
|
|
|
|
# secret files
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
credentials.json
|
|
secrets.json
|
|
*_secret*
|
|
*_credentials*
|
|
|
|
# turbo
|
|
.turbo
|
|
|
|
# ai sdk devtools
|
|
.devtools
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# ide
|
|
.idea
|
|
.agent/
|
|
.agents/
|
|
.continue/
|
|
.cursor/
|
|
.windsurf/
|
|
|
|
# temporary analysis docs
|
|
COMPREHENSIVE_ANALYSIS.md
|
|
PLAN.md
|
|
REGISTRY_TOOLS_ANALYSIS.md
|
|
USER_ACCOUNT_ANALYSIS_*.md
|
|
*.skill
|
|
|
|
# storybook
|
|
storybook-static
|
|
|
|
# changesets
|
|
.changeset/*.md
|
|
!.changeset/README.md
|
|
.vercel
|
|
packages/tool-ideas/data/tools-export.json
|
|
.env*.local
|