1 Star 0 Fork 0

冰雅轩/nppPluginList

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pl.schema 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
Christian Grasser 提交于 2022-11-27 03:03 +08:00 . fix #529
{
"type": "object",
"required": [
"name",
"version",
"arch",
"npp-plugins"
],
"properties": {
"name": { "enum": ["npp-pluginList"] },
"version": {
"type": "string",
"pattern": "^\\d+(\\.\\d+){,3}$"
},
"arch": { "enum": ["32", "64", "arm64"] },
"npp-plugins": {
"type": "array",
"items": { "$ref": "#/definitions/plugin" }
}
},
"definitions": {
"plugin": {
"type": "object",
"required": [
"folder-name",
"display-name",
"version",
"id",
"repository",
"description",
"author",
"homepage"
],
"properties": {
"folder-name": {
"type": "string",
"minLength": 1
},
"display-name": {
"type": "string",
"minLength": 1
},
"version": {
"type": "string",
"pattern": "^\\d+(\\.\\d+){,3}$"
},
"npp-compatible-versions": {
"type": "string",
"pattern": "^\\[?,?(\\d+(\\.\\d+){,3},?){1,2}\\]?$"
},
"id": {
"type": "string",
"pattern": "(?i)^[0-9A-F]{64}$"
},
"repository": {
"format": "uri"
},
"description": {
"type": "string",
"minLength": 1
},
"author": {
"type": "string"
},
"homepage": {
"oneOf": [
{"type": "string", "maxLength": 0},
{"format": "uri"}
]
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ice_elegant/nppPluginList.git
git@gitee.com:ice_elegant/nppPluginList.git
ice_elegant
nppPluginList
nppPluginList
master

搜索帮助