blob: 61b5a3e1da9c88dcaf5e3b98d49c56c475719eac (
plain)
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
|
# Source TypeScript files (compiled JS will be in dist/)
src/
*.ts
!*.d.ts
tsconfig.json
tsconfig.*.json
# Test files and coverage
tests/
test/
__tests__/
*.test.ts
*.test.js
*.spec.ts
*.spec.js
vitest.config.ts
vitest.config.js
jest.config.*
coverage/
.nyc_output/
*.lcov
test-results/
# Development and generated files
.generated/
.test-*/
test-output/
*.backup-*
.claude-*/
debug-*.ts
debug-*.js
scripts/
# Config files
.gitignore
.npmignore
.editorconfig
.eslintrc*
.prettierrc*
.eslintignore
.prettierignore
.nvmrc
.npmrc
# Build artifacts not needed for package
*.map
*.tsbuildinfo
tsconfig.tsbuildinfo
# Documentation (except essential ones)
docs/
*.md
!README.md
!CHANGELOG.md
!LICENSE
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
.circleci/
azure-pipelines.yml
Jenkinsfile
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.project
.classpath
*.sublime-*
# OS files
.DS_Store
.DS_Store?
._*
Thumbs.db
desktop.ini
.Spotlight-V100
.Trashes
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Dependencies (shouldn't be in package)
node_modules/
.pnp
.pnp.js
.yarn/
.pnpm-store/
# Environment files
.env
.env.*
*.env
# Temporary files
*.tmp
*.temp
*.bak
*.backup
*.old
.cache/
tmp/
temp/
# Package manager files (except package.json)
package-lock.json
yarn.lock
pnpm-lock.yaml
.pnpm-debug.log
# Examples and demos (if any)
examples/
demo/
demos/
sample/
samples/
# Keep the CLI entry point
!dist/cli.js
|