Squashed from chore/license-relicense. Full message preserved in the original branch commitbb77eb5. See ADR-0002 for the decision rationale. Refs: ADR-0002, commitbb77eb5
59 lines
No EOL
1.3 KiB
JSON
59 lines
No EOL
1.3 KiB
JSON
{
|
|
"name": "GitHub Repository",
|
|
"description": "Extract repository details from GitHub",
|
|
"site": "github.com",
|
|
"category": "development",
|
|
"icon": "\ud83d\udc19",
|
|
"url_pattern": "*://github.com/*/*",
|
|
"schema": {
|
|
"name": "github_repo",
|
|
"base_selector": "main",
|
|
"fields": [
|
|
{
|
|
"name": "name",
|
|
"selector": "strong[itemprop='name']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "description",
|
|
"selector": "p[itemprop='description']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "stars",
|
|
"selector": "#repo-stars-counter-star",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "forks",
|
|
"selector": "#repo-network-counter",
|
|
"type": "text",
|
|
"transform": "int"
|
|
},
|
|
{
|
|
"name": "language",
|
|
"selector": "[itemprop='programmingLanguage']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "license",
|
|
"selector": "[itemprop='license']",
|
|
"type": "text"
|
|
},
|
|
{
|
|
"name": "last_updated",
|
|
"selector": "relative-time",
|
|
"type": "attribute",
|
|
"attribute": "datetime"
|
|
},
|
|
{
|
|
"name": "topics",
|
|
"selector": ".topic-tag",
|
|
"type": "text"
|
|
}
|
|
]
|
|
},
|
|
"_license": "MIT",
|
|
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
|
|
} |