-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.09 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.09 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
{
"name": "@bgroup/media-manager",
"version": "1.0.0",
"title": "Media Manager plugin",
"description": "",
"license": "ISC",
"layout": "main-layout",
"languages": {
"default": "en",
"supported": [
"en",
"es"
]
},
"modules": {
"path": "modules"
},
"deployment": {
"distributions": [
{
"name": "web",
"environment": "development",
"backend": "backend",
"platform": "web",
"ports": {
"bundles": 6510
}
},
{
"name": "web-tsc",
"platform": "web",
"environment": "development",
"backend": "backend",
"ports": {
"bundles": 6514
},
"ts": {
"compiler": "tsc"
}
},
{
"name": "backend",
"environment": "development",
"platform": "backend",
"ports": {
"bundles": 6511,
"http": 6512,
"inspect": 6513
}
}
]
},
"dependencies": {
"@beyond-js/backend": "~0.1.4",
"@beyond-js/events": "^0.0.6",
"@beyond-js/reactive": "^1.0.2",
"@beyond-js/kernel": "~0.1.9",
"@beyond-js/local": "~0.1.3",
"@beyond-js/react-18-widgets": "~0.0.1",
"socket.io-client": "^4.5.4"
}
}