mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-09 16:03:09 +08:00
14 lines
355 B
JSON
14 lines
355 B
JSON
|
|
{
|
||
|
|
"$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" }
|
||
|
|
}
|
||
|
|
}
|