forked from jacobwojoski/dice-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
79 lines (73 loc) · 2.59 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
79
{
"title": "Dice Stats",
"description": "A module which tracks all dice rolls of every dice type and allows player to see end of session stats.",
"authors": [
{
"name": "jacobwojo",
"discord": "jacobwojo#6005"
}
],
"compatibility": {
"minimum": "10",
"verified": "11"
},
"scripts": [
"scripts/classes/appdatastorage/dice-stats-diceinfo.js",
"scripts/classes/appdatastorage/dice-stats-player.js",
"scripts/classes/appdatastorage/dice-stats-rollinfo.js",
"scripts/classes/appdatastorage/dice-stats-rollmsginfo.js",
"scripts/classes/asyncinteraction/dice-stats-handlebars.js",
"scripts/classes/asyncinteraction/dice-stats-hooks.js",
"scripts/classes/asyncinteraction/dice-stats-sockets.js",
"scripts/classes/database/dice-stats-datapack.js",
"scripts/classes/database/dice-stats-db.js",
"scripts/classes/forms/dice-stats-compareplayerspage.js",
"scripts/classes/forms/dice-stats-scenecontrol.js",
"scripts/classes/forms/dice-stats-globalstatuspage.js",
"scripts/classes/forms/dice-stats-tabedplayerstatspage.js",
"scripts/classes/forms/dice-stats-exportdatapage.js",
"scripts/classes/systemMessageParsers/dice-stats-messageparserfactory.js",
"scripts/classes/systemMessageParsers/dnd5eSystemMessageParser.js",
"scripts/classes/systemMessageParsers/dragonbaneSystemMessageParser.js",
"scripts/classes/systemMessageParsers/genericSystemMessageParser.js",
"scripts/classes/systemMessageParsers/pf1eSystemMessageParser.js",
"scripts/classes/systemMessageParsers/pf2eSystemMessageParser.js",
"scripts/classes/dice-stats-globals.js",
"scripts/classes/dice-stats-main.js",
"scripts/classes/dice-stats-utils.js",
"scripts/classes/import/googleChartImport.js"
],
"styles": [
"styles/dice-stats.css"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "languages/en.json",
"flags": {}
},
{
"lang": "de",
"name": "Deutsch",
"path": "languages/de.json",
"flags": {}
}
],
"socket": true,
"version": "1.18.3",
"download": "https://github.com/jacobwojoski/dice-stats/archive/refs/tags/v1.18.3.zip",
"manifest": "https://github.com/jacobwojoski/dice-stats/releases/latest/download/module.json",
"changelog": "https://github.com/jacobwojoski/dice-stats/blob/main/CHANGELOG.md",
"readme": "https://github.com/jacobwojoski/dice-stats",
"url": "https://github.com/jacobwojoski/dice-stats",
"id": "dice-stats",
"relationships": {
"requires": [
{
"id": "socketlib",
"type": "module"
}
]
}
}