Files
everything-claude-code/schemas/plugin.schema.json

14 lines
355 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Claude Plugin Configuration",
"type": "object",
"required": ["name"],
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"author": { "type": "string" },
"repository": { "type": "string" },
"license": { "type": "string" }
}
}