@bigstonedevelopment/dpm
v1.1.2
Published
A Minecraft Datapack Package/Library manager.
Downloads
30
Maintainers
Readme
{
"name": "Folder Name",
"licensePath": "./LICENSE.txt", /* This is put in /Folder Name/LICENSES.txt */
"datapackPath": "./src",
"buildPath": "./build",
"load": [
"namespace:load"
],
"tick": [
"namespace:tick"
],
"dependencies": [ /* dpm install will automatically add packages to this */
"@user/repo",
"@user/repo/branch",
]
}{
"name": "Example Package",
"description": "A example DPM package for a README!",
"author": "BigstoneDevelopment",
"licensePath": "./LICENSE.txt",
"supportedVersions": "10-27",
"base": "./datapack",
"overlays": {
"<10": "./overlays/legacy",
"10-15": "./overlays/1.16",
"26": "./overlays/1.21",
">=27": "./overlays/future"
},
"load": [
"namespace:load"
],
"tick": [
"namespace:tick"
]
}- [ ] Package Version Support (Branches and Releases)
- [ ] Beet and Bolt Support
- [ ] TUI for manging packages
- [ ] Packages requiring other packages
- [ ] Overlays from different branches
