-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.npmignore
More file actions
98 lines (80 loc) · 1.4 KB
/
.npmignore
File metadata and controls
98 lines (80 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Source files
src/
tests/
scripts/
docs/
!docs/auth/production_scopes.json
!docs/auth/sandbox_scopes.json
# Configuration files
tsconfig.json
vitest.config.ts
.eslintrc.json
eslint.config.js
.prettierrc
.prettierignore
# Documentation (already in package.json files array)
# CLAUDE.md, GEMINI.md, README.md are explicitly included
# Environment files
.env
.env.*
.env.example
# OAuth tokens (sensitive, but stored in .env only)
.ebay-tokens.json
# Build artifacts to exclude
build/**/*.map
build/**/*.d.ts.map
# Exclude large OpenAPI type folders (saves ~2.6 MB)
build/types/sell-apps
build/types/application-settings
# TypeScript declarations (users don't need these for runtime - saves ~200 KB)
build/**/*.d.ts
# Keep only essential types
!build/index.d.ts
!build/server-http.d.ts
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Testing
coverage/
.nyc_output/
# Git
.git/
.gitignore
.gitattributes
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
# Package managers
.npmrc
pnpm-lock.yaml
yarn.lock
package-lock.json
# Temporary files
*.tmp
tmp/
temp/
*.log
# MCP config (not needed in published package)
.mcp.json
# Other
CHANGELOG.md
CONTRIBUTING.md
CODE_OF_CONDUCT.md
SECURITY.md
BUG_REPORT.md
DOCKER_MCP_REGISTRY_GUIDE.md
LICENSE
*.md.backup
# Images and media
*.gif
*.png
*.jpg
*.jpeg
*.svg
icons/