-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.npmignore
More file actions
158 lines (140 loc) · 3.9 KB
/
.npmignore
File metadata and controls
158 lines (140 loc) · 3.9 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# ============================================================================
# NFE.io SDK v3 - NPM Ignore Configuration
# ============================================================================
# Only ship production-ready files to NPM
# Everything here is EXCLUDED from the published package
# ----------------------------------------------------------------------------
# Source Files (we ship compiled dist/ instead)
# ----------------------------------------------------------------------------
src/
tests/
examples/
# ----------------------------------------------------------------------------
# Development Configuration
# ----------------------------------------------------------------------------
.github/
.vscode/
.idea/
*.iml
# TypeScript Config
tsconfig.json
tsup.config.ts
vitest.config.ts
# Linting & Formatting
.eslintrc.cjs
.eslintrc.js
.prettierrc.json
.prettierignore
.editorconfig
# CI/CD
.travis.yml
.circleci/
.gitlab-ci.yml
azure-pipelines.yml
# ----------------------------------------------------------------------------
# Testing & Coverage
# ----------------------------------------------------------------------------
tests/
test/
coverage/
.nyc_output/
*.test.ts
*.test.js
*.spec.ts
*.spec.js
vitest.config.ts
# ----------------------------------------------------------------------------
# Documentation (keep only README, CHANGELOG, MIGRATION)
# ----------------------------------------------------------------------------
docs/
*.md
!README.md
!CHANGELOG.md
!MIGRATION.md
!LICENSE.md
!LICENSE
# Development docs
AGENTS.md
CONTRIBUTING.md
architecture-examples.md
implementation-roadmap.md
mcp-n8n-examples.md
README-v2.md
README_RELEASE.md
RELEASE_CHECKLIST.md
RELEASE_COMMANDS.ps1
RELEASE_COMMANDS.sh
RELEASE_SCRIPTS_COMPARISON.md
# ----------------------------------------------------------------------------
# Build & Development Tools
# ----------------------------------------------------------------------------
scripts/
samples/
openapi/
# Build artifacts (we ship dist/ but not build tools)
tsup.config.ts
*.tsbuildinfo
# ----------------------------------------------------------------------------
# Version Control
# ----------------------------------------------------------------------------
.git/
.gitignore
.gitattributes
.gitmodules
# ----------------------------------------------------------------------------
# Package Manager Files
# ----------------------------------------------------------------------------
package-lock.json
yarn.lock
pnpm-lock.yaml
.npmrc
.yarnrc
.yarnrc.yml
.pnpmfile.cjs
# Package versions
package.json.v3
package-v3.json
CHANGELOG-v3.md
# ----------------------------------------------------------------------------
# Temporary & Cache Files
# ----------------------------------------------------------------------------
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.tgz
*.tar.gz
node_modules/
.cache/
.temp/
tmp/
temp/
# ----------------------------------------------------------------------------
# OS Files
# ----------------------------------------------------------------------------
.DS_Store
Thumbs.db
*.swp
*.swo
*~
# ----------------------------------------------------------------------------
# Environment Files
# ----------------------------------------------------------------------------
.env
.env.*
*.local
# ----------------------------------------------------------------------------
# Legacy Files (v2)
# ----------------------------------------------------------------------------
lib/
VERSION
CHANGELOG
# ============================================================================
# What WILL be published (defined in package.json "files" field):
# - dist/ (compiled code)
# - README.md (documentation)
# - CHANGELOG.md (release notes)
# - MIGRATION.md (v2->v3 guide)
# - LICENSE (if present)
# - package.json (package metadata)
# ============================================================================