-
Notifications
You must be signed in to change notification settings - Fork 3
/
module.json
78 lines (78 loc) · 2.02 KB
/
module.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
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
{
"id": "Rideable",
"title": "Rideable",
"description": "A small module to handle riding and mounting",
"authors": [
{
"name": "saibot"
}
],
"version": "3.1.1",
"compatibility": {
"minimum": "10",
"verified": "12"
},
"socket": "true",
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json",
"flags": {}
},
{
"lang": "de",
"name": "Deutsch",
"path": "lang/de.json",
"flags": {}
},
{
"lang": "fr",
"name": "Français",
"path": "lang/fr.json",
"flags": {}
}
],
"esmodules": [
"scripts/CoreVersionComp.js",
"scripts/compatibility/RideableCompUtils.js",
"scripts/utils/GeometricUtils.js",
"scripts/utils/RideableUtils.js",
"scripts/settings/RideableSettings.js",
"scripts/helpers/RideablePopups.js",
"scripts/helpers/EffectManager.js",
"scripts/helpers/RideableFlags.js",
"scripts/RidingScript.js",
"scripts/MountingScript.js",
"scripts/FollowingScript.js",
"scripts/helpers/SocketHandler.js",
"scripts/helpers/MacroHooks.js",
"scripts/settings/RideableSheetSettings.js",
"scripts/compatibility/RideableCompatibility.js",
"scripts/compatibility/APIHandler.js"
],
"packs": [
{
"name": "rideable",
"label": "Rideable",
"path": "packs/rideable.db",
"type": "Macro"
}
],
"relationships": {
"recommends": [
{
"id": "routinglib",
"type": "module",
"reason": "Recommended for the follow token feature (not required)",
"compatibility": {}
}
]
},
"url": "https://github.com/Saibot393/Rideable",
"download": "https://github.com/Saibot393/Rideable/archive/refs/tags/v3.1.1.zip",
"manifest": "https://github.com/Saibot393/Rideable/releases/latest/download/module.json",
"readme": "https://github.com/Saibot393/Rideable/blob/main/README.md",
"changelog": "https://github.com/Saibot393/Rideable/blob/main/CHANGELOG.md",
"bugs": "https://github.com/Saibot393/Rideable/issues"
}