forked from Forien/foundryvtt-forien-quest-log
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmodule.json
134 lines (134 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"id": "forien-quest-log",
"title": "Forien's Quest Log",
"description": "Provides comprehensive Quest Log system for players and Game Masters",
"authors": [
{
"name": "Forien",
"url": "https://www.patreon.com/forien"
},
{
"name": "Michael Leahy (TyphonJS)",
"url": "https://www.typhonjs.io"
}
],
"url": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log",
"readme": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log/blob/master/README.md",
"bugs": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log/issues",
"changelog": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log/releases/latest/",
"version": "0.8.0",
"compatibility": {
"minimum": "11",
"verified": "12",
"maximum": "12"
},
"esmodules": [
"./src/init.js"
],
"styles": [
"./css/init.css"
],
"languages": [
{
"lang": "cn",
"name": "中文(简体",
"path": "lang/cn.json"
},
{
"lang": "de",
"name": "Deutsch",
"path": "lang/de.json"
},
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "es",
"name": "Español",
"path": "lang/es.json"
},
{
"lang": "fi-Fl",
"name": "Finnish",
"path": "lang/fi-FI.json"
},
{
"lang": "fr",
"name": "Français",
"path": "lang/fr.json"
},
{
"lang": "it",
"name": "Italiano",
"path": "lang/it.json"
},
{
"lang": "ja",
"name": "日本語",
"path": "lang/ja.json"
},
{
"lang": "ko",
"name": "한국어",
"path": "lang/ko.json"
},
{
"lang": "nl",
"name": "Nederlands",
"path": "lang/nl.json"
},
{
"lang": "pl",
"name": "Polski",
"path": "lang/pl.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "lang/pt-BR.json"
},
{
"lang": "ru",
"name": "Russian",
"path": "lang/ru.json"
},
{
"lang": "sv",
"name": "Svenska",
"path": "lang/sv.json"
},
{
"lang": "zh-tw",
"name": "正體中文",
"path": "lang/zh-tw.json"
}
],
"packs": [
{
"name": "macros-gm",
"label": "FQL Macros (GM)",
"module": "forien-quest-log",
"path": "./packs/macro-gm.db",
"type": "Macro",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
},
{
"name": "macros-player",
"label": "FQL Macros (Player)",
"module": "forien-quest-log",
"path": "./packs/macro-player.db",
"type": "Macro"
}
],
"socket": true,
"manifest": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log/releases/latest/download/module.json",
"download": "https://github.com/League-of-Foundry-Developers/foundryvtt-forien-quest-log/releases/download/0.8.0/module.zip",
"protected": false,
"coreTranslation": false,
"library": false
}