generated from League-of-Foundry-Developers/FoundryVTT-Module-Template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
module.json
64 lines (64 loc) · 1.28 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
{
"id": "intelligent-npcs",
"title": "Intelligent NPCs",
"description": "Intelligent NPCs to bring more life to your games",
"version": "#{VERSION}#",
"library": "false",
"manifestPlusVersion": "1.2.0",
"persistentStorage": true,
"compatibility": {
"minimum": 10,
"verified": 12
},
"authors": [
{
"name": "Cody Swendrowski",
"discord": "cswendrowski#9701"
},
{
"name": "Roman Trevisanut",
"discord": "Cobalt#7779"
}
],
"relationships": {
"systems": [],
"requires": []
},
"esmodules": [
"scripts/intelligent-npcs.mjs"
],
"scripts": [
"scripts/lib/signalr.js"
],
"styles": [
"styles/intelligent-npcs.css"
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "languages/en.json"
}
],
"packs": [
{
"name": "free-intelligent-npcs",
"label": "Free Intelligent NPCs",
"path": "packs/free-intelligent-npcs.db",
"type": "JournalEntry"
}
],
"flags": {
"hotReload": {
"extensions": ["css", "hbs", "json"],
"paths": ["styles", "templates", "languages"]
}
},
"private": false,
"url": "#{URL}#",
"manifest": "#{MANIFEST}#",
"download": "#{DOWNLOAD}#",
"license": "LICENSE",
"readme": "README.md",
"media": []
}