-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmignore
More file actions
80 lines (67 loc) · 1.08 KB
/
Copy path.npmignore
File metadata and controls
80 lines (67 loc) · 1.08 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
# .npmignore — Defense-in-depth exclusion list
# Primary gating: package.json "files" allowlist
# This file provides secondary protection if "files" is ever removed
# Test files
tests/
*.test.*
*.spec.*
# Development tools
dev-tools/
scripts/
# Build artifacts and output
_bmad-output/
_output/
coverage/
dist/
# Documentation (internal)
Docs/
sme-reviews/
# Source files (only dist/ ships)
src/
_bmad/
!_bmad/framework/dist/**/*
!src/utility/cli/**/*
!src/utility/tools/**/*
!src/utility/normalize-line-endings.js
# CI/CD
.github/
# Configuration files (dev only)
.eslintrc*
eslint.config.*
.markdownlint*
.prettierrc*
.prettierignore
tsconfig*.json
typedoc.json
vitest.config.*
# Claude Code settings (validators ship via dist/)
.claude/
!.claude/validators-node/package.json
!.claude/validators-node/dist/**/*
# Environment and secrets
.env
.env.*
*.pem
*.key
*.crt
# Editor/IDE
.vscode/
.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Source maps (optional exclusion for leaner package)
*.map
# Misc
*.bak
*.backup
*.old
*.orig
*.log
*.tmp
*.temp
README.md.new
CLAUDE.md
privateproject/