From 33e50eea014bcdebef2e0e73308a029996d2543a Mon Sep 17 00:00:00 2001 From: Mike Bloy Date: Sun, 26 Feb 2023 14:32:42 -0600 Subject: [PATCH] module.json init --- LICENSE | 8 ++++++++ module.json | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 module.json diff --git a/LICENSE b/LICENSE index 48ba4b5..8db7e81 100644 --- a/LICENSE +++ b/LICENSE @@ -19,3 +19,11 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +--- + +This game references the Savage Worlds game system, available from Pinnacle +Entertainment Group at www.peginc.com. Savage Worlds and all associated logos +and trademarks are copyrights of Pinnacle Entertainment Group. Used with +permission. Pinnacle makes no representation or warranty as to the quality, +viability, or suitability for purpose of this product. diff --git a/module.json b/module.json new file mode 100644 index 0000000..cc11c2c --- /dev/null +++ b/module.json @@ -0,0 +1,55 @@ +{ + "id": "swade-mb-helpers", + "name": "SWADE Helpers (MB)", + "title": "SWADE Helpers (MB)", + "description": "Mike's collection of swade helpers", + "version": "1.0.0", + "authors": [ + { + "name": "Mike" + } + ], + "minimumCoreVersion": "10", + "compatibleCoreVersion": "10", + "compatibility": { + "minimum": "10", + "verified": "10" + }, + "esmodules": [ + "./scripts/module.ejs" + ], + "packs": [ + { + "name": "module-docs", + "label": "Module Documentation", + "path": "./packs/module-docs.db", + "type": "JournalEntry" + }, + { + "name": "swpf-macros", + "label": "Savage Pathfinder Macros", + "path": "./packs/swpf-macros", + "type": "Macro" + } + ], + "relationships": { + "systems": [{ + "id": "swade", + "type": "system", + "manifest": "https://gitlab.com/api/v4/projects/16269883/packages/generic/swade/latest/system.json", + "compatibility": { "verified": "2.2.5" } + }], + "requires": [{ + "id": "warpgate", + "type": "module", + "manifest": "https://github.com/trioderegion/warpgate/releases/latest/download/module.json", + "compatibility": { "verified": "1.16.2" } + }] + }, + "system": ["swade"], + "url": "https://git.bloy.org/foundryvtt/swade-mb-helpers", + "manifest": "https://git.bloy.org/foundryvtt/swade-mb-helpers/raw/branch/main/module.json", + "download": "https://git.bloy.org/foundryvtt/swade-mb-helpers/archive/main.zip", + "license": "./LICENSE", + "readme": "./README.md" + }