The Fisrt Updated

This commit is contained in:
2026-01-25 13:55:03 +08:00
commit bb5dd599d8
35 changed files with 3439 additions and 0 deletions

38
META-INF/fabric.mod.json Normal file
View File

@@ -0,0 +1,38 @@
{
"schemaVersion": 1,
"id": "pyfabricloader",
"version": "1.0.0",
"name": "PyFabricLoader",
"description": "A Python mod loader for Minecraft Fabric using Jython, allowing to load and run Python mods.",
"authors": [
"银河万通软件开发工作室 工程部 TermiNexus"
],
"contact": {
"homepage": "https://www.gvsds.com",
"sources": "https://www.gvsds.com"
},
"license": "MIT",
"icon": "assets/pyfabricloader/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.gvsds.pyfabricloader.PyFabricLoader"
]
},
"mixins": [
"pyfabricloader.mixins.json",
{
"config": "pyfabricloader.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.14.0",
"minecraft": "[1.18.1,1.21.10]",
"java": ">=17",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
}