23 lines
391 B
Plaintext
23 lines
391 B
Plaintext
# .npmignore
|
|
|
|
# Ignore Gitea/Git configurations
|
|
.gitea/
|
|
.git/
|
|
.gitignore
|
|
|
|
# Ignore Environment/Config files
|
|
.env
|
|
.env.example
|
|
|
|
# Ignore Maintenance & Repo Management files
|
|
# (Users installing the package usually don't need these)
|
|
CODEOWNERS
|
|
CONTRIBUTING.md
|
|
SECURITY.md
|
|
|
|
# Ignore Logs
|
|
npm-debug.log
|
|
*.log
|
|
|
|
# Note: NEVER ignore package.json, README.md, LICENSE, or your actual code (index.js)
|