Skip to content

Commit 461b76e

Browse files
committed
first commit
0 parents  commit 461b76e

17 files changed

Lines changed: 11386 additions & 0 deletions

.gitignore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
lerna-debug.log*
8+
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
15+
# Build outputs
16+
dist/
17+
build/
18+
lib/
19+
*.js
20+
*.d.ts
21+
*.js.map
22+
*.d.ts.map
23+
24+
# Ignore compiled TypeScript files in src (but allow config files)
25+
src/**/*.js
26+
src/**/*.d.ts
27+
src/**/*.js.map
28+
29+
# TypeScript
30+
*.tsbuildinfo
31+
typings/
32+
33+
# Testing
34+
coverage/
35+
*.lcov
36+
.nyc_output
37+
test-results/
38+
.vitest/
39+
40+
# Cache directories
41+
.npm
42+
.eslintcache
43+
.cache
44+
.parcel-cache
45+
.rpt2_cache/
46+
.rts2_cache_cjs/
47+
.rts2_cache_es/
48+
.rts2_cache_umd/
49+
50+
# Environment variables
51+
.env
52+
.env.local
53+
.env.development.local
54+
.env.test.local
55+
.env.production.local
56+
57+
# Framework-specific
58+
.next/
59+
out/
60+
.nuxt/
61+
.vuepress/dist/
62+
63+
# Serverless
64+
.serverless/
65+
66+
# IDE and editor files
67+
.vscode/
68+
.idea/
69+
*.swp
70+
*.swo
71+
*~
72+
73+
# OS generated files
74+
.DS_Store
75+
.DS_Store?
76+
._*
77+
.Spotlight-V100
78+
.Trashes
79+
ehthumbs.db
80+
Thumbs.db
81+
82+
# Logs
83+
logs/
84+
*.log
85+
86+
# Optional directories
87+
bower_components/
88+
jspm_packages/
89+
90+
# Build tools
91+
.grunt
92+
.fusebox/
93+
.dynamodb/
94+
.tern-port
95+
.vscode-test
96+
97+
# Package managers
98+
.yarn/cache
99+
.yarn/unplugged
100+
.yarn/build-state.yml
101+
.yarn/install-state.gz
102+
.pnp.*
103+
.yarn-integrity
104+
105+
# Output of 'npm pack'
106+
*.tgz
107+
108+
# Temporary folders
109+
tmp/
110+
temp/
111+
112+
# Backup files
113+
*.backup
114+
*.bak
115+
*.tmp
116+
117+
# Lock files (keep pnpm-lock.yaml but ignore others)
118+
package-lock.json
119+
yarn.lock
120+
121+
# MCP specific (optional - uncomment if needed)
122+
# mcp-config.json
123+
# *.mcp
124+
125+
# Optional REPL history
126+
.node_repl_history
127+
128+
# Build tools cache
129+
.lock-wscript
130+
build/Release
131+
lib-cov

.npmignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Development files
2+
src/
3+
*.ts
4+
!*.d.ts
5+
tsconfig.json
6+
pnpm-lock.yaml
7+
node_modules/
8+
9+
# Testing files
10+
test-*.js
11+
*.test.js
12+
*.spec.js
13+
14+
# Documentation drafts
15+
docs/
16+
*.md
17+
!README.md
18+
19+
# Configuration files
20+
.env
21+
.env.*
22+
mcp-config.json
23+
24+
# Build artifacts
25+
*.tsbuildinfo
26+
*.log
27+
28+
# Version control
29+
.git/
30+
.gitignore

0 commit comments

Comments
 (0)