-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmodule.json
73 lines (73 loc) · 1.79 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
{
"name": "calendar-weather",
"title": "Calendar/Weather",
"description": "Adds a customizable calendar with events and weather.",
"version": "3.1.2",
"minimumCoreVersion": "0.7.0",
"compatibleCoreVersion": "0.7.9",
"author": "Michael Sebelski [DasSauerkraut#3215], about-time by tposney#1462",
"url": "https://github.com/DasSauerkraut/calendar-weather",
"manifest": "https://raw.githubusercontent.com/DasSauerkraut/calendar-weather/master/package/module.json",
"download": "https://github.com/DasSauerkraut/calendar-weather/raw/master/package/calendar-weather-v3.1.2.zip",
"esmodules": [
"init.mjs",
"modules/registerSettings.mjs",
"modules/dateTime.mjs",
"modules/month.mjs",
"modules/weatherTracker.mjs",
"modules/calendarEvents.mjs",
"modules/calendar.mjs",
"modules/calendarForm.mjs",
"modules/warningSystem.mjs"
],
"styles": [ "./css/calendar.css" ],
"packs": [],
"languages": [
{
"lang": "en",
"name": "English",
"path": "langs/en.json"
},
{
"lang": "fr",
"name": "Français",
"path": "langs/fr.json"
},
{
"lang": "ko",
"name": "Korean",
"path": "langs/ko.json"
},
{
"lang": "de",
"name": "Deutsch",
"path": "langs/de.json"
},
{
"lang": "ja",
"name": "日本語",
"path": "langs/ja.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "langs/pt-BR.json"
},
{
"lang": "es",
"name": "Español",
"path": "langs/es.json"
},
{
"lang": "pl",
"name": "Polski",
"path": "langs/pl.json"
}
],
"dependencies": [
{
"name": "about-time",
"manifest": "https://gitlab.com/tposney/about-time/-/raw/master/package/module.json"
}
]
}