-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 8.82 KB
/
package.json
File metadata and controls
169 lines (169 loc) · 8.82 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
159
160
161
162
163
164
165
166
167
168
169
{
"name": "com.wallstop-studios.unity-helpers",
"version": "3.2.1",
"displayName": "Unity Helpers",
"description": "Treasure chest of Unity developer tools",
"unity": "2021.3",
"keywords": [
"inspector-attributes",
"custom-drawers",
"editor-tools",
"spatial-tree",
"prng",
"random",
"serialization",
"data-structures",
"effects-system",
"relational-components",
"quadtree",
"kdtree",
"rtree",
"octree",
"serializable-dictionary",
"serializable-hashset",
"dependency-injection",
"di-integration",
"sprite-tools",
"animation-tools",
"extensions",
"utility",
"performance",
"protobuf",
"json"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wallstop/unity-helpers.git"
},
"bugs": {
"url": "https://github.com/wallstop/unity-helpers/issues"
},
"signature": "unsigned",
"author": "wallstop studios <wallstop@wallstopstudios.com> (https://wallstopstudios.com)",
"homepage": "https://wallstop.github.io/unity-helpers",
"documentationUrl": "https://wallstop.github.io/unity-helpers",
"licensesUrl": "https://wallstop.github.io/unity-helpers/project/license/",
"samples": [
{
"displayName": "DI – VContainer",
"description": "LifetimeScope registration, scene-wide assignment, and runtime BuildUpWithRelations.",
"path": "Samples~/DI - VContainer"
},
{
"displayName": "DI – Zenject",
"description": "SceneContext installer, scene-wide assignment, and prefab instantiation with relations.",
"path": "Samples~/DI - Zenject"
},
{
"displayName": "DI – Reflex",
"description": "SceneScope installer, scene scan, and runtime Container helpers.",
"path": "Samples~/DI - Reflex"
},
{
"displayName": "Relational Components – Basic",
"description": "Attribute-based auto-wiring without DI; parent/sibling/child examples.",
"path": "Samples~/Relational Components - Basic"
},
{
"displayName": "Serialization – JSON",
"description": "System.Text.Json with Unity converters; pretty and fast options.",
"path": "Samples~/Serialization - JSON"
},
{
"displayName": "Random – PRNG",
"description": "PCG seeds, floats, Gaussian, and list sampling.",
"path": "Samples~/Random - PRNG"
},
{
"displayName": "Logging – Tag Formatter",
"description": "UnityLogTagFormatter decorators, runtime toggles, and logging extension demos.",
"path": "Samples~/Logging - Tag Formatter"
},
{
"displayName": "Spatial Structures – 2D and 3D",
"description": "QuadTree2D, KdTree2D nearest neighbors, SpatialHash2D queries.",
"path": "Samples~/Spatial Structures - 2D and 3D"
},
{
"displayName": "UI Toolkit – MultiFile Selector (Editor)",
"description": "EditorWindow using MultiFileSelectorElement for multi-file picking.",
"path": "Samples~/UI Toolkit - MultiFile Selector (Editor)"
},
{
"displayName": "UGUI – EnhancedImage",
"description": "Programmatic Canvas setup and HDR-tinted EnhancedImage.",
"path": "Samples~/UGUI - EnhancedImage"
}
],
"scripts": {
"docs:serve": "bundle exec jekyll serve --baseurl \"\" --livereload",
"docs:build": "bundle exec jekyll build --baseurl \"\"",
"lint:docs": "node ./scripts/run-doc-link-lint.js",
"lint:doc-links": "node ./scripts/run-doc-link-lint.js --verbose",
"lint:code-samples": "node ./scripts/extract-code-samples.js --extract-only",
"lint:code-samples:verbose": "node ./scripts/extract-code-samples.js --verbose --extract-only",
"lint:spelling": "cspell --no-progress --show-suggestions",
"lint:spelling:verbose": "cspell --show-suggestions",
"lint:spelling:config": "node scripts/lint-cspell-config.js",
"lint:spelling:config:fix": "node scripts/lint-cspell-config.js --fix",
"lint:llm": "pwsh -NoProfile -File scripts/lint-llm-instructions.ps1",
"lint:llm:fix": "pwsh -NoProfile -File scripts/lint-llm-instructions.ps1 -Fix",
"lint:llm:verbose": "pwsh -NoProfile -File scripts/lint-llm-instructions.ps1 -VerboseOutput",
"hooks:install": "git config core.hooksPath .githooks && chmod +x .githooks/pre-commit .githooks/pre-push",
"eol:check": "pwsh -NoProfile -File scripts/check-eol.ps1",
"eol:fix": "pwsh -NoProfile -File scripts/normalize-eol.ps1",
"format:md": "prettier --write -- \"**/*.{md,markdown}\"",
"format:md:check": "prettier --check -- \"**/*.{md,markdown}\"",
"format:json": "prettier --write -- \"**/*.{json,jsonc,asmdef,asmref}\"",
"format:json:check": "prettier --check -- \"**/*.{json,jsonc,asmdef,asmref}\"",
"format:js": "prettier --write -- \"**/*.js\"",
"format:js:check": "prettier --check -- \"**/*.js\"",
"format:yaml": "prettier --write -- \"**/*.{yml,yaml}\"",
"format:yaml:check": "prettier --check -- \"**/*.{yml,yaml}\"",
"format:check": "npm run format:md:check && npm run format:json:check && npm run format:yaml:check && npm run format:js:check",
"format:fix": "npm run format:md && npm run format:json && npm run format:yaml && npm run format:js",
"lint:yaml": "pwsh -NoProfile -File scripts/lint-yaml.ps1 -VerboseOutput",
"lint:dependabot": "pwsh -NoProfile -File scripts/lint-dependabot.ps1 -VerboseOutput",
"test:lint-dependabot": "pwsh -NoProfile -File scripts/tests/test-lint-dependabot.ps1 -VerboseOutput",
"lint:markdown": "markdownlint --config .markdownlint.json --ignore-path .markdownlintignore -- \"**/*.md\" \"**/*.markdown\"",
"validate:content": "npm run lint:docs && npm run lint:markdown && npm run lint:yaml && npm run format:check && npm run lint:llm && npm run lint:doc-counts && npm run lint:dependabot",
"validate:tests": "npm run lint:tests && npm run test:gitignore-docs && npm run test:sync-script-contracts && npm run test:lint-dependabot && npm run test:npm-package-signature && npm run test:npm-package-changelog",
"validate:prepush": "npm run validate:content && npm run eol:check && npm run validate:tests && npm run lint:csharp-naming && npm run lint:spelling:config && npm run validate:devcontainer && npm run validate:hook-sync && npm run validate:hook-perms && npm run test:shell-portability && npm run test:validate-devcontainer-urls",
"validate:devcontainer": "pwsh -NoProfile -File scripts/validate-devcontainer-config.ps1 -VerboseOutput",
"validate:hook-sync": "pwsh -NoProfile -File scripts/validate-hook-sync-calls.ps1 -VerboseOutput",
"validate:hook-perms": "bash scripts/validate-hook-permissions.sh",
"lint:tests": "pwsh -NoProfile -File scripts/lint-tests.ps1 -VerboseOutput",
"lint:doc-counts": "pwsh -NoProfile -File scripts/lint-doc-counts.ps1",
"sync:doc-counts": "pwsh -NoProfile -File scripts/sync-doc-counts.ps1",
"lint:csharp-naming": "pwsh -NoProfile -File scripts/lint-csharp-naming.ps1 -VerboseOutput",
"lint:unity-file-naming": "pwsh -NoProfile -File scripts/lint-unity-file-naming.ps1 -VerboseOutput",
"validate:npm-package": "pwsh -NoProfile -File scripts/validate-npm-package.ps1 -VerboseOutput",
"test:lint-unity-file-naming": "pwsh -NoProfile -File scripts/tests/test-lint-unity-file-naming.ps1 -VerboseOutput",
"test:gitignore-docs": "pwsh -NoProfile -File scripts/tests/test-gitignore-docs.ps1",
"test:sync-script-contracts": "pwsh -NoProfile -File scripts/tests/test-sync-script-contracts.ps1",
"test:final-newline": "bash scripts/tests/test-final-newline.sh",
"test:post-create": "bash scripts/tests/test-post-create.sh",
"test:wiki-generation": "bash scripts/tests/test-wiki-generation.sh",
"test:shell-portability": "bash scripts/tests/test-shell-portability.sh",
"test:validate-devcontainer-urls": "bash scripts/tests/test-validate-devcontainer-urls.sh",
"test:npm-package-signature": "pwsh -NoProfile -File scripts/tests/test-npm-package-signature.ps1 -VerboseOutput",
"test:npm-package-changelog": "pwsh -NoProfile -File scripts/tests/test-npm-package-changelog.ps1 -VerboseOutput",
"verify:tools": "bash scripts/verify-devcontainer-tools.sh",
"unity:setup-license": "pwsh -NoProfile -File scripts/unity/setup-license.ps1",
"unity:validate": "bash scripts/unity/validate-license-setup.sh",
"unity:setup": "bash scripts/unity/setup.sh",
"unity:compile": "bash scripts/unity/compile.sh",
"unity:test": "bash scripts/unity/run-tests.sh",
"unity:test:editmode": "bash scripts/unity/run-tests.sh --mode editmode",
"unity:test:playmode": "bash scripts/unity/run-tests.sh --mode playmode",
"unity:test:all": "bash scripts/unity/run-tests.sh --mode all",
"unity:generate-activation": "bash scripts/unity/generate-activation.sh",
"unity:retry-license": "bash scripts/unity/retry-license.sh"
},
"devDependencies": {
"cspell": "^10.0.0",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.8.2"
}
}