-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (83 loc) · 2.84 KB
/
package.json
File metadata and controls
84 lines (83 loc) · 2.84 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
{
"name": "com.nonatomic.servicekit",
"version": "2.0.2",
"displayName": "Service Kit",
"description": "A lightweight dependency injection and service locator framework for Unity. Attribute-based registration, async resolution, fluent API, optional dependencies, service tags, scene-aware lifecycle, and UniTask support.",
"unity": "2022.3",
"unityRelease": "1f1",
"documentationUrl": "https://github.com/PaulNonatomic/ServiceKit/blob/main/README.md",
"changelogUrl": "https://github.com/PaulNonatomic/ServiceKit/blob/main/CHANGELOG.md",
"dependencies": {
"com.unity.test-framework": "1.3.9"
},
"keywords": [
"unity",
"dependency-injection",
"service-locator",
"di",
"ioc",
"inversion-of-control",
"async",
"unitask",
"scriptableobject",
"monobehaviour",
"scene-management"
],
"author": {
"name": "Nonatomic",
"email": "paul@nonatomic.co.uk",
"url": "https://nonatomic.co.uk/"
},
"type": "tool",
"repository": {
"type": "git",
"url": "git@github.com:PaulNonatomic/ServiceKit.git"
},
"samples": [
{
"displayName": "1 - Basic Usage",
"description": "Introduction to ServiceKit - creating locators, registering services, and consuming them.",
"path": "Samples~/1 - Basic Usage"
},
{
"displayName": "2 - ServiceKitBehaviour",
"description": "Using ServiceKitBehaviour base class for MonoBehaviour-based services with automatic lifecycle management.",
"path": "Samples~/2 - ServiceKitBehaviour"
},
{
"displayName": "3 - Fluent Registration",
"description": "The fluent API for clean, chainable service registration.",
"path": "Samples~/3 - Fluent Registration"
},
{
"displayName": "4 - Multi-Type Registration",
"description": "Registering a single service instance under multiple interface types.",
"path": "Samples~/4 - Multi-Type Registration"
},
{
"displayName": "5 - Optional Dependencies",
"description": "Intelligent 3-state dependency resolution for optional services.",
"path": "Samples~/5 - Optional Dependencies"
},
{
"displayName": "6 - Service Tags",
"description": "Organizing and filtering services using tags.",
"path": "Samples~/6 - Service Tags"
},
{
"displayName": "7 - Async Resolution",
"description": "Asynchronous service resolution with timeout and cancellation support.",
"path": "Samples~/7 - Async Resolution"
},
{
"displayName": "8 - Scene Management",
"description": "Managing service lifecycle across scene transitions.",
"path": "Samples~/8 - Scene Management"
},
{
"displayName": "9 - Complete Game Example",
"description": "A mini-game demonstrating real-world ServiceKit usage patterns.",
"path": "Samples~/9 - Complete Game Example"
}
]
}