-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.npmignore
More file actions
113 lines (98 loc) · 1.97 KB
/
.npmignore
File metadata and controls
113 lines (98 loc) · 1.97 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
# NPM ignore file for Unity package publishing
# This file explicitly controls what gets excluded from npm pack/publish
# to ensure Unity .meta files and package assets are properly included.
# Python virtual environment and cache (synced with .gitignore)
.venv/**
.venv/
.venv
.venv.meta
__pycache__/
**/__pycache__/
*.pyc
**__pycache__.meta
scripts/wiki/__pycache__.meta
# Development/CI files
.github/
.devcontainer/
.config/
.husky/
.llm/
.vscode/
.vs/
.idea/
.claude/
.codex/
_llm_*
_llm_*.meta
# Config files not needed in package
.cursorrules
.csharpierignore
.csharpierrc.json
.editorconfig
.gitattributes
.gitignore
.yamllint.yaml
.prettierrc
.prettierignore
.npmignore.meta
# Agent/AI instruction files (keep for npm but exclude from published package)
# Use leading slash to match only root-level files
/AGENTS.md
/AGENTS.md.meta
/CLAUDE.md
/CLAUDE.md.meta
/PLAN.md
/PLAN.md.meta
# Progress tracking folder (development notes - root level only)
/progress/
/progress.meta
# Artifacts and build outputs (root level only)
/artifacts/
/artifacts.meta
# Test failures and logs (root level only)
/TestFailures.txt
/TestFailures.txt.meta
logs_*.zip
logs_*.zip.meta
# Node.js (root level only)
/node_modules/
/node_modules.meta
/package-lock.json
/package-lock.json.meta
# Tests (not needed in published Unity package)
# Use leading slash to match only root-level Tests, not scripts/tests
/Tests/
/Tests.meta
# Windows reserved device name artifacts
nul
nul.meta
# Solution files
*.sln
*.sln.meta
*.sln.iml
# Visual Studio
*.suo
*.user
*.userosscache
*.sln.docstates
# Placeholder files (root level only)
/PlaceHolderSummary.md
/PlaceHolderSummary.md.meta
# Unity Editor Analyzers (built DLLs)
Editor/Analyzers/*.dll
Editor/Analyzers/*.pdb
# Temporary/generated files
*.rsp
*.rsp.meta
*.tmp
*.tmp_proj
*.log
*.log.meta
method-analysis-*.md
method-analysis-*.md.meta
method-analysis-*.json
method-analysis-*.json.meta
# TestProjects (root level only)
/TestProjects.meta
/TestProjects/
scripts/run-unity*