Stone.js API
    Preparing search index...

    The starter contract a package declares in its own package.json:

    { "name": "@acme/stone-starters", "stone": { "starters": [
    { "value": "api", "title": "REST API", "tags": ["api"], "path": "api" }
    ] } }

    This is the ONLY thing the CLI knows about a starter — it lives in the starter, not here.

    interface StarterEntry {
        description?: string;
        path?: string;
        tags?: string[];
        title?: string;
        value: string;
    }

    Hierarchy (View Summary)

    Index
    description?: string

    One-line description.

    path?: string

    Sub-path of the template inside the package (default .).

    tags?: string[]

    Free-form tags (e.g. api, spa, ssr, ssg).

    title?: string

    Display title.

    value: string

    Unique id (the questionnaire answer value).