-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmignore
More file actions
54 lines (46 loc) · 798 Bytes
/
.npmignore
File metadata and controls
54 lines (46 loc) · 798 Bytes
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
# This file is mostly informational since package.json "files" array controls what's published
# The "files" array whitelists: dist/, mcp/dist/, documentation/, README.md, LICENSE.md, CHANGELOG.md
# Exclude development files
src/
*.ts
*.tsx
!*.d.ts
# Exclude config files
tsconfig.json
tsup.config.ts
.prettierrc
.prettierignore
.editorconfig
.npmrc
# Exclude test files
*.test.ts
*.test.tsx
*.spec.ts
*.spec.tsx
__tests__/
test/
tests/
coverage/
# Exclude development docs (docs/ is for internal notes, documentation/ is for users)
docs/
CLAUDE.md
# Exclude build artifacts
node_modules/
.pnpm-store/
pnpm-lock.yaml
*.log
*.tgz
# Exclude version control
.git/
.gitignore
.gitattributes
# Exclude IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# Exclude CI/CD
.github/
.gitlab-ci.yml
.travis.yml