-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.7 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.7 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
{
"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": "jest",
"test:scripts": "jest",
"test:llms-txt": "jest --runTestsByPath scripts/__tests__/update-llms-txt.test.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format:md": "prettier --write \"**/*.{md,markdown}\"",
"format:md:check": "prettier --check \"**/*.{md,markdown}\"",
"format:json": "prettier --write \"**/*.{json,asmdef,asmref}\"",
"format:json:check": "prettier --check \"**/*.{json,asmdef,asmref}\"",
"format:yaml": "prettier --write \"**/*.{yml,yaml}\"",
"format:yaml:check": "prettier --check \"**/*.{yml,yaml}\"",
"check:yaml": "prettier --check \"**/*.{yml,yaml}\" && yamllint -c .yamllint.yaml .",
"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:npm-meta": "node scripts/validate-npm-meta.js --check",
"validate:vscode-settings": "node scripts/validate-vscode-settings.js"
},
"devDependencies": {
"jest": "^30.3.0",
"markdownlint-cli2": "^0.22.0",
"prettier": "3.8.2"
},
"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"
}
]
}