-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.88 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.88 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
{
"name": "com.wallstop-studios.dxmessaging",
"version": "2.2.0",
"displayName": "DxMessaging",
"description": "Synchronous Event Bus for Unity",
"unity": "2021.3",
"documentationUrl": "https://wallstop.github.io/DxMessaging/",
"changelogUrl": "https://raw.githubusercontent.com/wallstop/DxMessaging/master/CHANGELOG.md",
"licensesUrl": "https://github.com/wallstop/DxMessaging/blob/master/LICENSE.md",
"keywords": [
"messaging",
"message",
"messages",
"event",
"event bus",
"eventing",
"send",
"receive",
"signal",
"slot"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wallstop/DxMessaging.git"
},
"bugs": {
"url": "https://github.com/wallstop/DxMessaging/issues"
},
"author": "wallstop studios <wallstop@wallstopstudios.com> (https://wallstopstudios.com)",
"homepage": "https://wallstop.github.io/DxMessaging/",
"main": "README.md",
"files": [
"Editor/**",
"Runtime/**",
"Samples~/**",
"SourceGenerators/Directory.Build.props",
"SourceGenerators/Directory.Build.props.meta",
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.cs",
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.cs.meta",
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.csproj",
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators/*.csproj.meta",
"SourceGenerators/WallstopStudios.DxMessaging.SourceGenerators.meta",
"CHANGELOG.md",
"CHANGELOG.md.meta",
"LICENSE.md",
"LICENSE.md.meta",
"README.md",
"README.md.meta",
"Third Party Notices.md",
"Third Party Notices.md.meta",
"package.json.meta",
"Editor.meta",
"Runtime.meta",
"SourceGenerators.meta"
],
"scripts": {
"test": "node scripts/run-managed-jest.js",
"test:scripts": "node scripts/run-managed-jest.js",
"test:llms-txt": "node scripts/run-managed-jest.js --runTestsByPath scripts/__tests__/update-llms-txt.test.js",
"test:watch": "node scripts/run-managed-jest.js --watch",
"test:coverage": "node scripts/run-managed-jest.js --coverage",
"format:md": "node scripts/run-managed-prettier.js --write \"**/*.{md,markdown}\"",
"format:md:check": "node scripts/run-managed-prettier.js --check \"**/*.{md,markdown}\"",
"format:json": "node scripts/run-managed-prettier.js --write \"**/*.{json,asmdef,asmref}\"",
"format:json:check": "node scripts/run-managed-prettier.js --check \"**/*.{json,asmdef,asmref}\"",
"format:yaml": "node scripts/run-managed-prettier.js --write \"**/*.{yml,yaml}\"",
"format:yaml:check": "node scripts/run-managed-prettier.js --check \"**/*.{yml,yaml}\"",
"check:package-json-format": "node scripts/run-managed-prettier.js --check package.json",
"check:prettier:hooks": "node scripts/run-managed-prettier.js --check \"**/*.{md,markdown,json,asmdef,asmref,yml,yaml}\"",
"check:cspell:scripts": "npx --yes cspell@9 --no-progress --no-summary \"scripts/**/*.js\"",
"check:yaml": "npm run format:yaml:check && pre-commit run yamllint --all-files",
"lint:markdown": "markdownlint-cli2 \"**/*.md\" \"**/*.markdown\"",
"update:llms-txt": "node scripts/update-llms-txt.js",
"check:llms-txt": "node scripts/update-llms-txt.js --check",
"validate:llms-txt": "npm run test:llms-txt && npm run check:llms-txt",
"validate:changelog": "node scripts/validate-changelog.js",
"validate:changelog:coverage": "node scripts/validate-changelog.js --check-coverage",
"validate:npm-meta": "node scripts/validate-npm-meta.js --check",
"validate:pre-commit-tooling": "node scripts/validate-pre-commit-tooling.js",
"validate:vscode-settings": "node scripts/validate-vscode-settings.js",
"preflight:pre-commit": "npm run check:package-json-format && npm run check:prettier:hooks && npm run validate:pre-commit-tooling && npm run check:cspell:scripts && npm run check:yaml && node scripts/generate-skills-index.js --check && npm run validate:npm-meta && npm run validate:changelog:coverage && pre-commit run script-parser-tests --all-files"
},
"devDependencies": {
"jest": "^30.3.0",
"markdownlint-cli2": "^0.22.1",
"prettier": "3.8.3"
},
"samples": [
{
"displayName": "Mini Combat",
"description": "Simple combat scenario showing Untargeted (settings), Targeted (heal), Broadcast (damage) with MessageAwareComponent and emit helpers.",
"path": "Samples~/Mini Combat"
},
{
"displayName": "UI Buttons + Inspector",
"description": "UI-driven message emissions and a global observer demonstrating inspector diagnostics and RegisterGlobalAcceptAll.",
"path": "Samples~/UI Buttons + Inspector"
},
{
"displayName": "Dependency Injection",
"description": "Integration samples for Zenject, VContainer, and Reflex showing IMessageRegistrationBuilder usage with container lifecycles.",
"path": "Samples~/DI"
}
]
}