-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 KB
/
package.json
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
{
"name": "jh.ioclight",
"version": "2.0.1",
"displayName": "IoCLight",
"description": "A minimal IoC container. Designed to work with il2cpp.",
"unity": "2021.3",
"keywords": [
"SOLID",
"IoC",
"IoC Container",
"Inversion of Control",
"Dependency Injection",
"il2cpp"
],
"author": {
"name": "Jochen Heckl",
"email": "jochen.heckl@gmail.com",
"url": "https://www.jochen.heckl.de"
},
"type": "library",
"dependencies": {
"com.unity.test-framework": "1.4.3"
},
"samples": [
{
"displayName": "ColorSwitcher",
"description": "A Simple Example that registers and resolves a color switcher that will supply a new color for a cube.",
"path": "Samples~/ColorSwitcher"
},
{
"displayName": "Bootstrap MainLoop",
"description": "A starting point for a IoC Container based project. Installs basic boot strapper that will drive a main loop.",
"path": "Samples~/Bootstrap MainLoop"
},
{
"displayName": "IoCBehaviour",
"description": "Simple example of IoCBehaviour. A MonoBehaviour that can resolve dependencies.",
"path": "Samples~/IoCBehaviour"
}
]
}