pryscraper/templates/github-repo.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

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"
}