generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule.json
58 lines (58 loc) · 1.4 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
{
"id": "challenge-tracker",
"title": "Challenge Tracker",
"description": "An interactive aid to track successes and failures in challenges à la D&D 4e-inspired skill challenges and Blades in the Dark progress clocks",
"version": "This is auto replaced",
"library": "false",
"compatibility": {
"minimum": "10",
"verified": "11.300"
},
"authors": [
{
"name": "Larkinabout",
"url": "https://github.com/Larkinabout"
}
],
"socket": true,
"relationships": {
"systems": [],
"requires": [
{
"id": "color-picker"
},
{
"id": "socketlib"
}
]
},
"esmodules": [
"./scripts/init.js"
],
"scripts": [
],
"styles": [
"styles/challenge-tracker.css"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "languages/en.json"
}
],
"url": "https://github.com/Larkinabout/fvtt-challenge-tracker",
"manifest": "This is auto replaced",
"download": "This is auto replaced",
"readme": "https://github.com/Larkinabout/fvtt-challenge-tracker#readme",
"media": [
{
"type": "icon",
"url": "https://raw.githubusercontent.com/Larkinabout/fvtt-challenge-tracker/master/images/challenge-tracker.png"
},
{
"type": "cover",
"url": "https://raw.githubusercontent.com/Larkinabout/fvtt-challenge-tracker/master/images/challenge-tracker-cover.png"
}
]
}