UNPKG

modrinth

Version:

JavaScript library for accessing the Modrinth API

40 lines (39 loc) 889 B
import licenses from "./licenses.json"; export { licenses }; export declare type License = { "short": "custom"; "name": "Custom License"; } | { "short": "lgpl"; "name": "GNU Lesser General Public License v2.1"; } | { "short": "apache"; "name": "Apache License 2.0"; } | { "short": "bsd-2-clause"; "name": "BSD 2-Clause"; } | { "short": "bsd-3-clause"; "name": "BSD 3-Clause"; } | { "short": "bsl"; "name": "Boost Software License 1.0"; } | { "short": "cc0"; "name": "Creative Commons Zero v1.0 Universal"; } | { "short": "unlicense"; "name": "The Unlicense"; } | { "short": "mpl"; "name": "Mozilla Public License 2.0"; } | { "short": "mit"; "name": "MIT License"; } | { "short": "arr"; "name": "All Rights Reserved"; } | { "short": "lgpl-3"; "name": "GNU Lesser General Public License v3"; };