@public-ui/mcp 4.3.0-rc.9 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/shared/sample-index.json +2 -2
- package/shared/template-index.json +213 -81
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/mcp",
|
|
3
|
-
"version": "4.3.0
|
|
3
|
+
"version": "4.3.0",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"glob": "13.0.6",
|
|
49
49
|
"simple-git": "3.36.0",
|
|
50
50
|
"zod": "4.4.3",
|
|
51
|
-
"@public-ui/components": "4.3.0
|
|
51
|
+
"@public-ui/components": "4.3.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@modelcontextprotocol/inspector": "2.0.0",
|
package/shared/sample-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"metadata": {
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-04T07:01:02.072Z",
|
|
4
4
|
"buildMode": "ci",
|
|
5
5
|
"counts": {
|
|
6
6
|
"total": 331,
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"totalScenarios": 19
|
|
11
11
|
},
|
|
12
12
|
"repo": {
|
|
13
|
-
"commit": "
|
|
13
|
+
"commit": "20cc9e1b0f92ab83d703454475728013f0350ac5",
|
|
14
14
|
"branch": "develop",
|
|
15
15
|
"repoUrl": "https://github.com/public-ui/kolibri"
|
|
16
16
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"repoId": "public-ui-templates",
|
|
5
5
|
"path": "README.md",
|
|
6
6
|
"type": "markdown",
|
|
7
|
-
"content": "# KoliBri Templates\n\nOfficial starter templates for the [KoliBri](https://github.com/public-ui/kolibri) web component library — a framework-independent, WCAG 2.2 & BITV 2.0 compliant component library.\n\n> **Documentation:** https://public-ui.github.io/en/\n\nThese templates let you scaffold a ready-to-use project in seconds — whether you're building a static page, a full React/Vue application, an SSR-powered site with Express/Astro/Next.js, or your own component library and theme.\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n- [Available Templates](#available-templates)\n - [Client Side Rendering (CSR)](#client-side-rendering-csr)\n - [Server Side Rendering (SSR)](#server-side-rendering-ssr)\n - [KoliBri Library Templates](#kolibri-library-templates)\n - [Utility Templates](#utility-templates)\n- [Register a Theme](#register-a-theme)\n- [Project Structure](#project-structure)\n- [Package Manager](#package-manager)\n- [Development Scripts](#development-scripts)\n- [Quick Start Script](#quick-start-script)\n- [License](#license)\n\n## Prerequisites\n\n- **[Node.js](https://nodejs.org/en/) 20+**\n- A package manager: `npm`, `pnpm`, or `yarn`\n- *(Optional)* [Visual Studio Code](https://code.visualstudio.com/) with the recommended extensions\n\n## Getting Started\n\nEvery template follows the same three-step flow:\n\n```bash\n# 1. Scaffold a new project from a template\nnpx degit public-ui/templates/<category>/<template> my-kolibri-project\n\n# 2. Install dependencies\ncd my-kolibri-project\nnpm install # or: pnpm install | yarn install\n\n# 3. Start the development server\nnpm start # or: pnpm start | yarn start\n```\n\nAll templates come with a sensible default configuration — the KoliBri components and a default theme are already registered and running out of the box. You only need to pick a template that fits your framework of choice.\n\n### Register a Theme\n\nKoliBri uses themes to style components. Every template includes the **default theme** already registered. To switch themes or use KoliBri without a build tool (via CDN), see the [official documentation](https://public-ui.github.io/en/docs/get-started/first-steps).\n\n```typescript\n// The theme is already imported and registered in every template.\n// To switch to a different theme:\nimport { register } from '@public-ui/components';\nimport { defineCustomElements } from '@public-ui/components/loader';\nimport { BWSt } from '@public-ui/theme-bwst';\n\nregister(BWSt, defineCustomElements).then(() => {\n // Start your app after the theme is registered\n});\n```\n\n> **Important:** Always call `register()` and wait for the Promise to resolve before rendering your application.\n\n## Available Templates\n\n### Client Side Rendering (CSR)\n\n> CSR templates are ready to use. Each includes a dev server, hot module replacement, linting, and formatting — all configured for KoliBri.\n\n
|
|
7
|
+
"content": "# KoliBri Templates\n\nOfficial starter templates for the [KoliBri](https://github.com/public-ui/kolibri) web component library — a framework-independent, WCAG 2.2 & BITV 2.0 compliant component library.\n\n> **Documentation:** https://public-ui.github.io/en/\n\nThese templates let you scaffold a ready-to-use project in seconds — whether you're building a static page, a full React/Vue/Solid/Svelte/Preact application, an SSR-powered site with Express/Astro/Next.js/Remix, or your own component library and theme.\n\nEvery CSR and SSR template ships with an identical **unified start page** (header + 2×2 card grid) so you can compare frameworks at a glance. See [`AGENTS.md`](AGENTS.md) for the layout specification.\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n- [Available Templates](#available-templates)\n - [Client Side Rendering (CSR)](#client-side-rendering-csr)\n - [Server Side Rendering (SSR)](#server-side-rendering-ssr)\n - [KoliBri Library Templates](#kolibri-library-templates)\n - [Utility Templates](#utility-templates)\n- [Register a Theme](#register-a-theme)\n- [Project Structure](#project-structure)\n- [Package Manager](#package-manager)\n- [Development Scripts](#development-scripts)\n- [Quick Start Script](#quick-start-script)\n- [License](#license)\n\n## Prerequisites\n\n- **[Node.js](https://nodejs.org/en/) 20+**\n- A package manager: `npm`, `pnpm`, or `yarn`\n- *(Optional)* [Visual Studio Code](https://code.visualstudio.com/) with the recommended extensions\n\n## Getting Started\n\nEvery template follows the same three-step flow:\n\n```bash\n# 1. Scaffold a new project from a template\nnpx degit public-ui/templates/<category>/<template> my-kolibri-project\n\n# 2. Install dependencies\ncd my-kolibri-project\nnpm install # or: pnpm install | yarn install\n\n# 3. Start the development server\nnpm start # or: pnpm start | yarn start\n```\n\nAll templates come with a sensible default configuration — the KoliBri components and a default theme are already registered and running out of the box. You only need to pick a template that fits your framework of choice.\n\n### Register a Theme\n\nKoliBri uses themes to style components. Every template includes the **default theme** already registered. To switch themes or use KoliBri without a build tool (via CDN), see the [official documentation](https://public-ui.github.io/en/docs/get-started/first-steps).\n\n```typescript\n// The theme is already imported and registered in every template.\n// To switch to a different theme:\nimport { register } from '@public-ui/components';\nimport { defineCustomElements } from '@public-ui/components/loader';\nimport { BWSt } from '@public-ui/theme-bwst';\n\nregister(BWSt, defineCustomElements).then(() => {\n // Start your app after the theme is registered\n});\n```\n\n> **Important:** Always call `register()` and wait for the Promise to resolve before rendering your application.\n\n## Available Templates\n\n### Client Side Rendering (CSR)\n\n> CSR templates are ready to use. Each includes a dev server, hot module replacement, linting, and formatting — all configured for KoliBri.\n\n| Template | Framework | Description |\n|---|---|---|\n| **angular-cli** | Angular 21 | Angular CLI (`@angular/build`) with KoliBri web components via `CUSTOM_ELEMENTS_SCHEMA`. UnoCSS, TypeScript. |\n| **react-vite** *(recommended)* | React 19 | React + Vite (SWC). Fast HMR, TypeScript, UnoCSS. Includes **Vitest + Testing Library**. |\n| **react-vite-hook-form** | React 19 | Same as `react-vite` plus [React Hook Form](https://react-hook-form.com/) and Zod for form handling & validation. |\n| **react-standalone** | — | No build step required — runs entirely in the browser via native ES modules. Ideal for quick prototypes or CMS integrations. |\n| **vue-vite** *(recommended)* | Vue 3 | Vue + Vite. TypeScript, UnoCSS. The reference (\"Gold Standard\") template. |\n| **solid-vite** | SolidJS | Solid + Vite. TypeScript, UnoCSS. |\n| **svelte-vite** | Svelte 5 | Svelte + Vite. TypeScript, UnoCSS. |\n| **preact-vite** | Preact | Preact + Vite. TypeScript, UnoCSS. |\n| **static-page** | — | A minimal static HTML page with KoliBri components served via a local dev server. |\n\n```bash\nnpx degit public-ui/templates/csr/<template> my-kolibri-project\n# e.g. npx degit public-ui/templates/csr/react-vite my-kolibri-project\n```\n\n### Server Side Rendering (SSR)\n\n> SSR templates support universal rendering with KoliBri's hydration. Check each template's README for framework-specific details.\n\n| Template | Framework | Description |\n|---|---|---|\n| **express** | Express 5 + TypeScript | Real server-side rendering via `@public-ui/hydrate` (`renderToString`), served with `nodemon`. |\n| **astro** | Astro + React 19 | Astro with React integration, UnoCSS. |\n| **next.js** | Next.js 15 + React 19 | Next.js App Router, UnoCSS. |\n| **remix** | React Router v8 (Remix) | Remix (now React Router v7 framework mode) on Vite, React 19. |\n\n```bash\nnpx degit public-ui/templates/ssr/<template> my-kolibri-project\n# e.g. npx degit public-ui/templates/ssr/express my-kolibri-project\n```\n\n### KoliBri Library Templates\n\nTemplates for building your own component libraries and themes based on KoliBri.\n\n| Template | Description |\n|---|---|\n| **kolibri/library** | A full Stencil component library project — components, schema, theme, and demo adapters (Angular, React, Vue). Requires `pnpm`. |\n| **kolibri/theme** | A theme-only project for customizing or building your own KoliBri theme. |\n\n```bash\n# Library template (pnpm required)\nnpx degit public-ui/templates/kolibri/library my-kolibri-project\ncd my-kolibri-project\npnpm install\n\n# Theme template\nnpx degit public-ui/templates/kolibri/theme my-kolibri-project\n```\n\n#### Library Project Structure\n\n```\nkolibri/library/\n├── app/ # Demo application\n├── components/ # Your component library (Stencil)\n│ └── adapters/ # Framework adapters (Angular, React, Vue)\n├── schema/ # JSON schema for component properties\n├── theme/ # Demo theme (based on @public-ui/theme-default)\n└── README.md\n```\n\n### Utility Templates\n\n| Template | Description |\n|---|---|\n| **svg2font** | Convert SVG files into a font icon set with CSS. Useful for creating custom icon fonts for KoliBri. |\n\n```bash\nnpx degit public-ui/templates/svg2font my-kolibri-project\n```\n\n## Project Structure\n\n```\ntemplates/\n├── .defaults/ # Shared default configs (editor, prettier, vscode)\n├── csr/ # Client-Side-Rendering templates\n│ ├── angular-cli/ # Angular 21\n│ ├── react-vite/ # React 19 + Vite\n│ ├── react-vite-hook-form/ # React 19 + React Hook Form\n│ ├── react-standalone/ # No-build, native ES modules\n│ ├── vue-vite/ # Vue 3 + Vite\n│ ├── solid-vite/ # SolidJS + Vite\n│ ├── svelte-vite/ # Svelte 5 + Vite\n│ ├── preact-vite/ # Preact + Vite\n│ └── static-page/ # Minimal static HTML\n├── ssr/ # Server-Side-Rendering templates\n│ ├── express/ # Express 5 + @public-ui/hydrate\n│ ├── astro/ # Astro + React\n│ ├── next.js/ # Next.js 15 + React\n│ └── remix/ # React Router v8 (Remix) + Vite\n├── kolibri/ # KoliBri library & theme templates\n│ ├── library/\n│ └── theme/\n└── svg2font/ # SVG-to-font converter utility\n```\n\n## Package Manager\n\nThese templates are maintained using [pnpm](https://pnpm.io) to ensure consistent dependency resolution across the monorepo. You can use `npm` or `yarn` for individual templates, but for library templates (`kolibri/library`) **pnpm is required**.\n\nUpdate dependencies with:\n\n```bash\npnpm up -Lri\n```\n\nThe `pnpm-lock.yaml` file can be safely removed after cloning a template if you wish to use a different package manager.\n\n## Development Scripts\n\nMost templates share a common set of scripts:\n\n| Script | Description |\n|---|---|\n| `npm start` | Start the development server with hot module replacement. |\n| `npm run build` | Create a production build. |\n| `npm run lint` | Type-check and lint the code (`tsc --noemit`, or `svelte-check` for Svelte). |\n| `npm run format` | Check code formatting with Prettier. |\n| `npm run unused` | Check for unused code and dependencies. |\n| `npm test` | Run unit/snapshot tests (currently only `react-vite` includes a test setup with Vitest). |\n\n## Quick Start Script\n\nHere's a shell script to quickly set up a new KoliBri theme project from scratch:\n\n```bash\n#!/bin/bash\nset -euo pipefail\n\n# Remove existing directory if it exists\nrm -rf my-own-kolibri-theme\n\n# Clone repository\nnpx degit public-ui/templates/kolibri/theme my-own-kolibri-theme\n\n# Change to new directory\ncd my-own-kolibri-theme || { echo \"Directory change failed\"; exit 1; }\n\n# Open VS Code if available\nif command -v code >/dev/null 2>&1; then\n code .\nelse\n echo \"VS Code (code) is not installed or not in PATH.\"\nfi\n\n# Install dependencies with pnpm@^10\nnpx --yes pnpm@^10 install\n\n# Initialize git repository and make initial commit\ngit init\ngit add .\ngit commit -m \"chore: commit initial code\"\n\n# Update snapshot tests\nnpm run test-update || true\n\n# Commit new snapshots\ngit add .\ngit commit -m \"chore: commit initial snapshots\"\n\n# Start the project\nnpm start\n```\n\n## License\n\nSee the [LICENSE](LICENSE) file for details. Each template may have its own license — check the individual template directory.\n",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"name": "README.md",
|
|
10
10
|
"tags": [
|
|
@@ -16,9 +16,31 @@
|
|
|
16
16
|
"templateType": "generic"
|
|
17
17
|
},
|
|
18
18
|
"stats": {
|
|
19
|
-
"size":
|
|
20
|
-
"lines":
|
|
21
|
-
"lastModified": "2026-08-
|
|
19
|
+
"size": 9600,
|
|
20
|
+
"lines": 246,
|
|
21
|
+
"lastModified": "2026-08-04T06:59:35.100Z"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "public-ui-templates:AGENTS.md",
|
|
26
|
+
"repoId": "public-ui-templates",
|
|
27
|
+
"path": "AGENTS.md",
|
|
28
|
+
"type": "markdown",
|
|
29
|
+
"content": "# AGENTS.md\n\nVerbindliche Konventionen für alle App-Templates in diesem Repository.\n\n## Ziel\n\nJedes App-Template (`csr/*` und `ssr/*`) liefert eine **einheitliche Startseite**. Nutzer sehen beim Ausprobieren verschiedener Templates sofort dasselbe Bild — unabhängig vom Framework.\n\n## Geltungsbereich\n\n**CSR:** `angular-cli`, `react-vite`, `react-vite-hook-form`, `react-standalone`, `solid-vite`, `svelte-vite`, `vue-vite`, `preact-vite`, `static-page`\n**SSR:** `express`, `astro`, `next.js`, `remix`\n\n## Tooling\n\n- **pnpm** im Monorepo-Modus: `pnpm install`, Updates mit `pnpm up -Lri`\n- Dependency-Konflikte werden an der Quelle behoben — niemals `--force` oder `--legacy-peer-deps`\n- **Verdana** als primäre Schriftart (barrierefrei, keine Ladezeit). Keine externen Web-Fonts. Override: `font-family: Verdana, sans-serif;`\n\n## Referenz-Layout\n\nHeader + 2×2-Card-Grid, eingebettet in `itzbund container mx-auto my-10 max-w-800px`:\n\n```\n┌──────────────────────────────────────────┐\n│ [KolKolibri] [Logo] │\n│ Willkommen zu KoliBri │\n├──────────────────────────────────────────┤\n│ ✅ Manifest │ ℹ️ Konzepte │\n│ ⚠️ Komponenten │ ❌ MCP │\n└──────────────────────────────────────────┘\n```\n\n**Header:** `KolKolibri`-Logo (links) + Framework-Logo (rechts), Überschrift **Willkommen zu KoliBri**, alles zentriert.\n\n### Cards\n\nJede Card ist ein `KolAlert` (`_variant=\"card\"`) mit `KolLink` + `KolIcon`:\n\n| Card | `_type` | `_icons` | Link |\n|------|---------|----------|------|\n| **Manifest** | `success` | `fa-solid fa-scroll` | `https://public-ui.github.io/en/docs/manifest` |\n| **Konzepte** | `info` | `fa-solid fa-sitemap` | `https://public-ui.github.io/en/docs/concepts/architecture` |\n| **Komponenten** | `warning` | `fa-solid fa-cubes` | `https://public-ui.github.io/en/docs/components` |\n| **MCP** | `error` | `fa-solid fa-robot` | `https://www.npmjs.com/package/@public-ui/mcp` |\n\n## Konventionen\n\n| Thema | Regel |\n|-------|-------|\n| **Sprache** | Deutsch; `lang=\"de\"`, `dir=\"ltr\"` |\n| **Schrift** | Verdana; keine externen Web-Fonts |\n| **Properties** | `_`-Präfix (`_label`, `_type`, …); Icons immer mit beschreibendem `_label` (niemals leer) |\n| **Stylesheets** | Nur was gebraucht wird: `codicon.css` + `fontawesome-free/css/all.min.css` |\n| **Meta-Tags** | `<meta charset=\"UTF-8\" />`, viewport, `<meta name=\"kolibri\" content=\"dev-mode=true\" />` |\n| **Favicon** | `<link rel=\"icon\" type=\"image/svg+xml\" href=\"/favicon.svg\" />` |\n\n## Framework-Adapter\n\n| Framework | Import-Pfad | Syntax |\n|-----------|-------------|--------|\n| Angular | `CUSTOM_ELEMENTS_SCHEMA` | `<kol-alert>` als Custom Element |\n| Vue 3 | `@public-ui/vue` | `<KolAlert>` als SFC |\n| React | `@public-ui/react-v19` | `<KolAlert>` als JSX |\n| Solid | `@public-ui/solid` | `<KolAlert>` als JSX |\n| Svelte | `@public-ui/svelte` | `<KolAlert>` als SFC |\n| Preact | `@public-ui/preact` | `<KolAlert>` als JSX |\n| Vanilla | Web-Components direkt | `<kol-alert>` als Custom Element |\n\n**Gold Standard:** `csr/vue-vite` (`src/App.vue`).\n\n## Wartung\n\nBei Änderungen zuerst **diese Datei** aktualisieren, dann alle Templates anpassen.\n",
|
|
30
|
+
"metadata": {
|
|
31
|
+
"name": "AGENTS.md",
|
|
32
|
+
"tags": [
|
|
33
|
+
"template",
|
|
34
|
+
"generic",
|
|
35
|
+
"kolibri",
|
|
36
|
+
"starter"
|
|
37
|
+
],
|
|
38
|
+
"templateType": "generic"
|
|
39
|
+
},
|
|
40
|
+
"stats": {
|
|
41
|
+
"size": 3486,
|
|
42
|
+
"lines": 75,
|
|
43
|
+
"lastModified": "2026-08-04T06:59:35.100Z"
|
|
22
44
|
}
|
|
23
45
|
},
|
|
24
46
|
{
|
|
@@ -40,7 +62,7 @@
|
|
|
40
62
|
"stats": {
|
|
41
63
|
"size": 2425,
|
|
42
64
|
"lines": 98,
|
|
43
|
-
"lastModified": "2026-08-
|
|
65
|
+
"lastModified": "2026-08-04T06:59:35.136Z"
|
|
44
66
|
}
|
|
45
67
|
},
|
|
46
68
|
{
|
|
@@ -62,7 +84,29 @@
|
|
|
62
84
|
"stats": {
|
|
63
85
|
"size": 50,
|
|
64
86
|
"lines": 4,
|
|
65
|
-
"lastModified": "2026-08-
|
|
87
|
+
"lastModified": "2026-08-04T06:59:35.136Z"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "public-ui-templates:ssr:remix:README.md",
|
|
92
|
+
"repoId": "public-ui-templates",
|
|
93
|
+
"path": "ssr/remix/README.md",
|
|
94
|
+
"type": "markdown",
|
|
95
|
+
"content": "# Remix (React Router v8 Framework Mode) | KoliBri\n\nSSR-Template mit [React Router v8 im Framework-Modus](https://reactrouter.com/) (dem offiziellen Nachfolger von Remix) und der Komponentenbibliothek [KoliBri](https://public-ui.github.io/).\n\n## Schnellstart\n\n```bash\npnpm install # Abhängigkeiten installieren (Monorepo)\npnpm run prepare # KoliBri-Assets nach public/assets/ kopieren\npnpm run dev # Dev-Server starten (http://localhost:3000)\n```\n\n## Skripte\n\n| Skript | Beschreibung |\n|--------|-------------|\n| `dev` | Startet den React-Router-Dev-Server |\n| `build` | Erzeugt den Produktions-Build (`build/`) |\n| `start` | Startet den Produktions-Server (`react-router-serve`) |\n| `lint` | TypeScript-Typprüfung (`tsc --noEmit`) |\n| `format` | Prüft Formatierung mit Prettier |\n| `stylelint` | Prüft Stylesheets |\n| `prepare` | Kopiert KoliBri-Komponenten- und Theme-Assets |\n\n## Architektur\n\n- **React Router v8** im Framework-Modus (SSR) — der Nachfolger des klassischen Remix.\n- **KoliBri-Registrierung** erfolgt clientseitig in `entry.client.tsx` **vor** der React-Hydration, damit die Web-Components beim Übernehmen des serverseitig gerenderten HTMLs bereits definiert sind.\n- Die vom Server ausgelieferten `<kol-*>`-Tags werden als Custom Elements gerendert und nach der Registrierung im Browser hydriert.\n- Siehe `app/kolibri.ts` für die Registrierungs-Logik.\n\n## Startseite\n\nEinheitliches Layout gemäß Repo-Konvention (Header + 2×2-Card-Grid) mit Links zu Manifest, Konzepten, Komponenten und dem KoliBri MCP.\n",
|
|
96
|
+
"metadata": {
|
|
97
|
+
"name": "README.md",
|
|
98
|
+
"tags": [
|
|
99
|
+
"template",
|
|
100
|
+
"generic",
|
|
101
|
+
"kolibri",
|
|
102
|
+
"starter"
|
|
103
|
+
],
|
|
104
|
+
"templateType": "generic"
|
|
105
|
+
},
|
|
106
|
+
"stats": {
|
|
107
|
+
"size": 1549,
|
|
108
|
+
"lines": 35,
|
|
109
|
+
"lastModified": "2026-08-04T06:59:35.135Z"
|
|
66
110
|
}
|
|
67
111
|
},
|
|
68
112
|
{
|
|
@@ -84,7 +128,7 @@
|
|
|
84
128
|
"stats": {
|
|
85
129
|
"size": 182,
|
|
86
130
|
"lines": 8,
|
|
87
|
-
"lastModified": "2026-08-
|
|
131
|
+
"lastModified": "2026-08-04T06:59:35.132Z"
|
|
88
132
|
}
|
|
89
133
|
},
|
|
90
134
|
{
|
|
@@ -106,7 +150,7 @@
|
|
|
106
150
|
"stats": {
|
|
107
151
|
"size": 4276,
|
|
108
152
|
"lines": 75,
|
|
109
|
-
"lastModified": "2026-08-
|
|
153
|
+
"lastModified": "2026-08-04T06:59:35.123Z"
|
|
110
154
|
}
|
|
111
155
|
},
|
|
112
156
|
{
|
|
@@ -128,7 +172,7 @@
|
|
|
128
172
|
"stats": {
|
|
129
173
|
"size": 2812,
|
|
130
174
|
"lines": 74,
|
|
131
|
-
"lastModified": "2026-08-
|
|
175
|
+
"lastModified": "2026-08-04T06:59:35.116Z"
|
|
132
176
|
}
|
|
133
177
|
},
|
|
134
178
|
{
|
|
@@ -150,15 +194,15 @@
|
|
|
150
194
|
"stats": {
|
|
151
195
|
"size": 587,
|
|
152
196
|
"lines": 56,
|
|
153
|
-
"lastModified": "2026-08-
|
|
197
|
+
"lastModified": "2026-08-04T06:59:35.113Z"
|
|
154
198
|
}
|
|
155
199
|
},
|
|
156
200
|
{
|
|
157
|
-
"id": "public-ui-templates:csr:
|
|
201
|
+
"id": "public-ui-templates:csr:svelte-vite:README.md",
|
|
158
202
|
"repoId": "public-ui-templates",
|
|
159
|
-
"path": "csr/
|
|
203
|
+
"path": "csr/svelte-vite/README.md",
|
|
160
204
|
"type": "markdown",
|
|
161
|
-
"content": "# KoliBri -
|
|
205
|
+
"content": "# KoliBri - Svelte Template\n\nThis is a template for a KoliBri client side rendering application using Svelte.\n\n## Get Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/)\n\n### Installation\n\nInstall the dependencies using pnpm:\n\n```bash\npnpm i # or npm i or yarn\n```\n\n### Usage\n\n#### Start the development server\n\n```bash\nnpm start\n```\n\n#### Build the application\n\n```bash\nnpm run build\n```\n\n#### Lint the code\n\n```bash\nnpm run lint\n```\n\n#### Format the code\n\n```bash\nnpm run format\n```\n\n#### Check unused code and dependencies\n\n```bash\nnpm run unused\n```\n",
|
|
162
206
|
"metadata": {
|
|
163
207
|
"name": "README.md",
|
|
164
208
|
"tags": [
|
|
@@ -170,9 +214,53 @@
|
|
|
170
214
|
"templateType": "generic"
|
|
171
215
|
},
|
|
172
216
|
"stats": {
|
|
173
|
-
"size":
|
|
174
|
-
"lines":
|
|
175
|
-
"lastModified": "2026-08-
|
|
217
|
+
"size": 566,
|
|
218
|
+
"lines": 50,
|
|
219
|
+
"lastModified": "2026-08-04T06:59:35.111Z"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"id": "public-ui-templates:csr:solid-vite:README.md",
|
|
224
|
+
"repoId": "public-ui-templates",
|
|
225
|
+
"path": "csr/solid-vite/README.md",
|
|
226
|
+
"type": "markdown",
|
|
227
|
+
"content": "# KoliBri - SolidJS Template\n\nThis is a template for a KoliBri client side rendering application using SolidJS.\n\n## Get Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/)\n\n### Installation\n\nInstall the dependencies using pnpm:\n\n```bash\npnpm i # or npm i or yarn\n```\n\n### Usage\n\n#### Start the development server\n\n```bash\nnpm start\n```\n\n#### Build the application\n\n```bash\nnpm run build\n```\n\n#### Lint the code\n\n```bash\nnpm run lint\n```\n\n#### Format the code\n\n```bash\nnpm run format\n```\n\n#### Check unused code and dependencies\n\n```bash\nnpm run unused\n```\n",
|
|
228
|
+
"metadata": {
|
|
229
|
+
"name": "README.md",
|
|
230
|
+
"tags": [
|
|
231
|
+
"template",
|
|
232
|
+
"generic",
|
|
233
|
+
"kolibri",
|
|
234
|
+
"starter"
|
|
235
|
+
],
|
|
236
|
+
"templateType": "generic"
|
|
237
|
+
},
|
|
238
|
+
"stats": {
|
|
239
|
+
"size": 568,
|
|
240
|
+
"lines": 50,
|
|
241
|
+
"lastModified": "2026-08-04T06:59:35.110Z"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "public-ui-templates:csr:react-vite-hook-form:README.md",
|
|
246
|
+
"repoId": "public-ui-templates",
|
|
247
|
+
"path": "csr/react-vite-hook-form/README.md",
|
|
248
|
+
"type": "markdown",
|
|
249
|
+
"content": "# KoliBri - React with React Hook Form sample\n\nThis is a template for a KoliBri client side rendering application.\nIt demonstrates how to use [React Hook Form](https://react-hook-form.com/) with KoliBri components.\n\n## Get Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/)\n\n### Installation\n\nInstall the dependencies using npm:\n\n```bash\nnpm i # or pnpm i or yarn\n```\n\n### Usage\n\n#### Start the development server\n\n```bash\nnpm start\n```\n\n#### Build the application\n\n```bash\nnpm run build\n```\n\n#### Lint the code\n\n```bash\nnpm run lint\n```\n\n#### Format the code\n\n```bash\nnpm run format\n```\n",
|
|
250
|
+
"metadata": {
|
|
251
|
+
"name": "README.md",
|
|
252
|
+
"tags": [
|
|
253
|
+
"template",
|
|
254
|
+
"generic",
|
|
255
|
+
"kolibri",
|
|
256
|
+
"starter"
|
|
257
|
+
],
|
|
258
|
+
"templateType": "generic"
|
|
259
|
+
},
|
|
260
|
+
"stats": {
|
|
261
|
+
"size": 601,
|
|
262
|
+
"lines": 45,
|
|
263
|
+
"lastModified": "2026-08-04T06:59:35.103Z"
|
|
176
264
|
}
|
|
177
265
|
},
|
|
178
266
|
{
|
|
@@ -194,7 +282,51 @@
|
|
|
194
282
|
"stats": {
|
|
195
283
|
"size": 587,
|
|
196
284
|
"lines": 56,
|
|
197
|
-
"lastModified": "2026-08-
|
|
285
|
+
"lastModified": "2026-08-04T06:59:35.104Z"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"id": "public-ui-templates:csr:preact-vite:README.md",
|
|
290
|
+
"repoId": "public-ui-templates",
|
|
291
|
+
"path": "csr/preact-vite/README.md",
|
|
292
|
+
"type": "markdown",
|
|
293
|
+
"content": "# KoliBri - Preact Template\n\nThis is a template for a KoliBri client side rendering application using Preact.\n\n## Get Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/)\n\n### Installation\n\nInstall the dependencies using pnpm:\n\n```bash\npnpm i # or npm i or yarn\n```\n\n### Usage\n\n#### Start the development server\n\n```bash\nnpm start\n```\n\n#### Build the application\n\n```bash\nnpm run build\n```\n\n#### Lint the code\n\n```bash\nnpm run lint\n```\n\n#### Format the code\n\n```bash\nnpm run format\n```\n\n#### Check unused code and dependencies\n\n```bash\nnpm run unused\n```\n",
|
|
294
|
+
"metadata": {
|
|
295
|
+
"name": "README.md",
|
|
296
|
+
"tags": [
|
|
297
|
+
"template",
|
|
298
|
+
"generic",
|
|
299
|
+
"kolibri",
|
|
300
|
+
"starter"
|
|
301
|
+
],
|
|
302
|
+
"templateType": "generic"
|
|
303
|
+
},
|
|
304
|
+
"stats": {
|
|
305
|
+
"size": 566,
|
|
306
|
+
"lines": 50,
|
|
307
|
+
"lastModified": "2026-08-04T06:59:35.102Z"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "public-ui-templates:csr:angular-cli:README.md",
|
|
312
|
+
"repoId": "public-ui-templates",
|
|
313
|
+
"path": "csr/angular-cli/README.md",
|
|
314
|
+
"type": "markdown",
|
|
315
|
+
"content": "# KoliBri - Angular Template\n\nThis is a template for a KoliBri client side rendering application using Angular 21 with the Angular CLI application builder.\n\n## Get Started\n\n### Prerequisites\n\n- [Node.js](https://nodejs.org/en/) 20+\n\n### Installation\n\nInstall the dependencies using npm:\n\n```bash\nnpm i # or pnpm i or yarn\n```\n\n### Usage\n\n#### Start the development server\n\n```bash\nnpm start\n```\n\n#### Build the application\n\n```bash\nnpm run build\n```\n\n#### Lint the code\n\n```bash\nnpm run lint\n```\n\n#### Format the code\n\n```bash\nnpm run format\n```\n\n#### Check unused code and dependencies\n\n```bash\nnpm run unused\n```\n",
|
|
316
|
+
"metadata": {
|
|
317
|
+
"name": "README.md",
|
|
318
|
+
"tags": [
|
|
319
|
+
"template",
|
|
320
|
+
"generic",
|
|
321
|
+
"kolibri",
|
|
322
|
+
"starter"
|
|
323
|
+
],
|
|
324
|
+
"templateType": "generic"
|
|
325
|
+
},
|
|
326
|
+
"stats": {
|
|
327
|
+
"size": 615,
|
|
328
|
+
"lines": 50,
|
|
329
|
+
"lastModified": "2026-08-04T06:59:35.101Z"
|
|
198
330
|
}
|
|
199
331
|
},
|
|
200
332
|
{
|
|
@@ -216,7 +348,7 @@
|
|
|
216
348
|
"stats": {
|
|
217
349
|
"size": 31,
|
|
218
350
|
"lines": 2,
|
|
219
|
-
"lastModified": "2026-08-
|
|
351
|
+
"lastModified": "2026-08-04T06:59:35.121Z"
|
|
220
352
|
}
|
|
221
353
|
},
|
|
222
354
|
{
|
|
@@ -238,7 +370,7 @@
|
|
|
238
370
|
"stats": {
|
|
239
371
|
"size": 31,
|
|
240
372
|
"lines": 2,
|
|
241
|
-
"lastModified": "2026-08-
|
|
373
|
+
"lastModified": "2026-08-04T06:59:35.120Z"
|
|
242
374
|
}
|
|
243
375
|
},
|
|
244
376
|
{
|
|
@@ -260,7 +392,7 @@
|
|
|
260
392
|
"stats": {
|
|
261
393
|
"size": 25,
|
|
262
394
|
"lines": 2,
|
|
263
|
-
"lastModified": "2026-08-
|
|
395
|
+
"lastModified": "2026-08-04T06:59:35.118Z"
|
|
264
396
|
}
|
|
265
397
|
},
|
|
266
398
|
{
|
|
@@ -282,7 +414,7 @@
|
|
|
282
414
|
"stats": {
|
|
283
415
|
"size": 327,
|
|
284
416
|
"lines": 19,
|
|
285
|
-
"lastModified": "2026-08-
|
|
417
|
+
"lastModified": "2026-08-04T06:59:35.116Z"
|
|
286
418
|
}
|
|
287
419
|
},
|
|
288
420
|
{
|
|
@@ -304,7 +436,7 @@
|
|
|
304
436
|
"stats": {
|
|
305
437
|
"size": 416,
|
|
306
438
|
"lines": 2,
|
|
307
|
-
"lastModified": "2026-08-
|
|
439
|
+
"lastModified": "2026-08-04T06:59:35.111Z"
|
|
308
440
|
}
|
|
309
441
|
},
|
|
310
442
|
{
|
|
@@ -326,7 +458,7 @@
|
|
|
326
458
|
"stats": {
|
|
327
459
|
"size": 416,
|
|
328
460
|
"lines": 2,
|
|
329
|
-
"lastModified": "2026-08-
|
|
461
|
+
"lastModified": "2026-08-04T06:59:35.103Z"
|
|
330
462
|
}
|
|
331
463
|
},
|
|
332
464
|
{
|
|
@@ -349,7 +481,7 @@
|
|
|
349
481
|
"stats": {
|
|
350
482
|
"size": 88,
|
|
351
483
|
"lines": 6,
|
|
352
|
-
"lastModified": "2026-08-
|
|
484
|
+
"lastModified": "2026-08-04T06:59:35.132Z"
|
|
353
485
|
}
|
|
354
486
|
},
|
|
355
487
|
{
|
|
@@ -371,7 +503,7 @@
|
|
|
371
503
|
"stats": {
|
|
372
504
|
"size": 0,
|
|
373
505
|
"lines": 1,
|
|
374
|
-
"lastModified": "2026-08-
|
|
506
|
+
"lastModified": "2026-08-04T06:59:35.119Z"
|
|
375
507
|
}
|
|
376
508
|
},
|
|
377
509
|
{
|
|
@@ -393,7 +525,7 @@
|
|
|
393
525
|
"stats": {
|
|
394
526
|
"size": 0,
|
|
395
527
|
"lines": 1,
|
|
396
|
-
"lastModified": "2026-08-
|
|
528
|
+
"lastModified": "2026-08-04T06:59:35.120Z"
|
|
397
529
|
}
|
|
398
530
|
},
|
|
399
531
|
{
|
|
@@ -415,7 +547,7 @@
|
|
|
415
547
|
"stats": {
|
|
416
548
|
"size": 21,
|
|
417
549
|
"lines": 2,
|
|
418
|
-
"lastModified": "2026-08-
|
|
550
|
+
"lastModified": "2026-08-04T06:59:35.119Z"
|
|
419
551
|
}
|
|
420
552
|
},
|
|
421
553
|
{
|
|
@@ -437,7 +569,7 @@
|
|
|
437
569
|
"stats": {
|
|
438
570
|
"size": 23,
|
|
439
571
|
"lines": 2,
|
|
440
|
-
"lastModified": "2026-08-
|
|
572
|
+
"lastModified": "2026-08-04T06:59:35.119Z"
|
|
441
573
|
}
|
|
442
574
|
},
|
|
443
575
|
{
|
|
@@ -459,7 +591,7 @@
|
|
|
459
591
|
"stats": {
|
|
460
592
|
"size": 25,
|
|
461
593
|
"lines": 2,
|
|
462
|
-
"lastModified": "2026-08-
|
|
594
|
+
"lastModified": "2026-08-04T06:59:35.119Z"
|
|
463
595
|
}
|
|
464
596
|
},
|
|
465
597
|
{
|
|
@@ -481,7 +613,7 @@
|
|
|
481
613
|
"stats": {
|
|
482
614
|
"size": 220,
|
|
483
615
|
"lines": 20,
|
|
484
|
-
"lastModified": "2026-08-
|
|
616
|
+
"lastModified": "2026-08-04T06:59:35.120Z"
|
|
485
617
|
}
|
|
486
618
|
},
|
|
487
619
|
{
|
|
@@ -503,7 +635,7 @@
|
|
|
503
635
|
"stats": {
|
|
504
636
|
"size": 587,
|
|
505
637
|
"lines": 56,
|
|
506
|
-
"lastModified": "2026-08-
|
|
638
|
+
"lastModified": "2026-08-04T06:59:35.710Z"
|
|
507
639
|
}
|
|
508
640
|
},
|
|
509
641
|
{
|
|
@@ -526,7 +658,7 @@
|
|
|
526
658
|
"stats": {
|
|
527
659
|
"size": 472,
|
|
528
660
|
"lines": 14,
|
|
529
|
-
"lastModified": "2026-08-
|
|
661
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
530
662
|
}
|
|
531
663
|
},
|
|
532
664
|
{
|
|
@@ -549,7 +681,7 @@
|
|
|
549
681
|
"stats": {
|
|
550
682
|
"size": 35,
|
|
551
683
|
"lines": 4,
|
|
552
|
-
"lastModified": "2026-08-
|
|
684
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
553
685
|
}
|
|
554
686
|
},
|
|
555
687
|
{
|
|
@@ -572,7 +704,7 @@
|
|
|
572
704
|
"stats": {
|
|
573
705
|
"size": 43,
|
|
574
706
|
"lines": 2,
|
|
575
|
-
"lastModified": "2026-08-
|
|
707
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
576
708
|
}
|
|
577
709
|
},
|
|
578
710
|
{
|
|
@@ -595,7 +727,7 @@
|
|
|
595
727
|
"stats": {
|
|
596
728
|
"size": 916,
|
|
597
729
|
"lines": 39,
|
|
598
|
-
"lastModified": "2026-08-
|
|
730
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
599
731
|
}
|
|
600
732
|
},
|
|
601
733
|
{
|
|
@@ -618,7 +750,7 @@
|
|
|
618
750
|
"stats": {
|
|
619
751
|
"size": 368,
|
|
620
752
|
"lines": 13,
|
|
621
|
-
"lastModified": "2026-08-
|
|
753
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
622
754
|
}
|
|
623
755
|
},
|
|
624
756
|
{
|
|
@@ -641,7 +773,7 @@
|
|
|
641
773
|
"stats": {
|
|
642
774
|
"size": 97,
|
|
643
775
|
"lines": 5,
|
|
644
|
-
"lastModified": "2026-08-
|
|
776
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
645
777
|
}
|
|
646
778
|
},
|
|
647
779
|
{
|
|
@@ -664,7 +796,7 @@
|
|
|
664
796
|
"stats": {
|
|
665
797
|
"size": 2358,
|
|
666
798
|
"lines": 44,
|
|
667
|
-
"lastModified": "2026-08-
|
|
799
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
668
800
|
}
|
|
669
801
|
},
|
|
670
802
|
{
|
|
@@ -687,7 +819,7 @@
|
|
|
687
819
|
"stats": {
|
|
688
820
|
"size": 9997,
|
|
689
821
|
"lines": 367,
|
|
690
|
-
"lastModified": "2026-08-
|
|
822
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
691
823
|
}
|
|
692
824
|
},
|
|
693
825
|
{
|
|
@@ -710,7 +842,7 @@
|
|
|
710
842
|
"stats": {
|
|
711
843
|
"size": 1199,
|
|
712
844
|
"lines": 34,
|
|
713
|
-
"lastModified": "2026-08-
|
|
845
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
714
846
|
}
|
|
715
847
|
},
|
|
716
848
|
{
|
|
@@ -733,7 +865,7 @@
|
|
|
733
865
|
"stats": {
|
|
734
866
|
"size": 10353,
|
|
735
867
|
"lines": 555,
|
|
736
|
-
"lastModified": "2026-08-
|
|
868
|
+
"lastModified": "2026-08-04T06:59:35.712Z"
|
|
737
869
|
}
|
|
738
870
|
},
|
|
739
871
|
{
|
|
@@ -756,7 +888,7 @@
|
|
|
756
888
|
"stats": {
|
|
757
889
|
"size": 646,
|
|
758
890
|
"lines": 21,
|
|
759
|
-
"lastModified": "2026-08-
|
|
891
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
760
892
|
}
|
|
761
893
|
},
|
|
762
894
|
{
|
|
@@ -779,7 +911,7 @@
|
|
|
779
911
|
"stats": {
|
|
780
912
|
"size": 519,
|
|
781
913
|
"lines": 19,
|
|
782
|
-
"lastModified": "2026-08-
|
|
914
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
783
915
|
}
|
|
784
916
|
},
|
|
785
917
|
{
|
|
@@ -802,7 +934,7 @@
|
|
|
802
934
|
"stats": {
|
|
803
935
|
"size": 670,
|
|
804
936
|
"lines": 22,
|
|
805
|
-
"lastModified": "2026-08-
|
|
937
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
806
938
|
}
|
|
807
939
|
},
|
|
808
940
|
{
|
|
@@ -825,7 +957,7 @@
|
|
|
825
957
|
"stats": {
|
|
826
958
|
"size": 3451,
|
|
827
959
|
"lines": 9,
|
|
828
|
-
"lastModified": "2026-08-
|
|
960
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
829
961
|
}
|
|
830
962
|
},
|
|
831
963
|
{
|
|
@@ -848,7 +980,7 @@
|
|
|
848
980
|
"stats": {
|
|
849
981
|
"size": 10313,
|
|
850
982
|
"lines": 46,
|
|
851
|
-
"lastModified": "2026-08-
|
|
983
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
852
984
|
}
|
|
853
985
|
},
|
|
854
986
|
{
|
|
@@ -871,7 +1003,7 @@
|
|
|
871
1003
|
"stats": {
|
|
872
1004
|
"size": 107635,
|
|
873
1005
|
"lines": 364,
|
|
874
|
-
"lastModified": "2026-08-
|
|
1006
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
875
1007
|
}
|
|
876
1008
|
},
|
|
877
1009
|
{
|
|
@@ -894,7 +1026,7 @@
|
|
|
894
1026
|
"stats": {
|
|
895
1027
|
"size": 64024,
|
|
896
1028
|
"lines": 323,
|
|
897
|
-
"lastModified": "2026-08-
|
|
1029
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
898
1030
|
}
|
|
899
1031
|
},
|
|
900
1032
|
{
|
|
@@ -917,7 +1049,7 @@
|
|
|
917
1049
|
"stats": {
|
|
918
1050
|
"size": 23737,
|
|
919
1051
|
"lines": 110,
|
|
920
|
-
"lastModified": "2026-08-
|
|
1052
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
921
1053
|
}
|
|
922
1054
|
},
|
|
923
1055
|
{
|
|
@@ -940,7 +1072,7 @@
|
|
|
940
1072
|
"stats": {
|
|
941
1073
|
"size": 18200,
|
|
942
1074
|
"lines": 75,
|
|
943
|
-
"lastModified": "2026-08-
|
|
1075
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
944
1076
|
}
|
|
945
1077
|
},
|
|
946
1078
|
{
|
|
@@ -963,7 +1095,7 @@
|
|
|
963
1095
|
"stats": {
|
|
964
1096
|
"size": 12909,
|
|
965
1097
|
"lines": 87,
|
|
966
|
-
"lastModified": "2026-08-
|
|
1098
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
967
1099
|
}
|
|
968
1100
|
},
|
|
969
1101
|
{
|
|
@@ -986,7 +1118,7 @@
|
|
|
986
1118
|
"stats": {
|
|
987
1119
|
"size": 19632,
|
|
988
1120
|
"lines": 75,
|
|
989
|
-
"lastModified": "2026-08-
|
|
1121
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
990
1122
|
}
|
|
991
1123
|
},
|
|
992
1124
|
{
|
|
@@ -1009,7 +1141,7 @@
|
|
|
1009
1141
|
"stats": {
|
|
1010
1142
|
"size": 8806,
|
|
1011
1143
|
"lines": 38,
|
|
1012
|
-
"lastModified": "2026-08-
|
|
1144
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
1013
1145
|
}
|
|
1014
1146
|
},
|
|
1015
1147
|
{
|
|
@@ -1032,7 +1164,7 @@
|
|
|
1032
1164
|
"stats": {
|
|
1033
1165
|
"size": 103382,
|
|
1034
1166
|
"lines": 377,
|
|
1035
|
-
"lastModified": "2026-08-
|
|
1167
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
1036
1168
|
}
|
|
1037
1169
|
},
|
|
1038
1170
|
{
|
|
@@ -1055,7 +1187,7 @@
|
|
|
1055
1187
|
"stats": {
|
|
1056
1188
|
"size": 3703,
|
|
1057
1189
|
"lines": 21,
|
|
1058
|
-
"lastModified": "2026-08-
|
|
1190
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
1059
1191
|
}
|
|
1060
1192
|
},
|
|
1061
1193
|
{
|
|
@@ -1078,7 +1210,7 @@
|
|
|
1078
1210
|
"stats": {
|
|
1079
1211
|
"size": 35770,
|
|
1080
1212
|
"lines": 74,
|
|
1081
|
-
"lastModified": "2026-08-
|
|
1213
|
+
"lastModified": "2026-08-04T06:59:35.714Z"
|
|
1082
1214
|
}
|
|
1083
1215
|
},
|
|
1084
1216
|
{
|
|
@@ -1101,7 +1233,7 @@
|
|
|
1101
1233
|
"stats": {
|
|
1102
1234
|
"size": 2763,
|
|
1103
1235
|
"lines": 89,
|
|
1104
|
-
"lastModified": "2026-08-
|
|
1236
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1105
1237
|
}
|
|
1106
1238
|
},
|
|
1107
1239
|
{
|
|
@@ -1124,7 +1256,7 @@
|
|
|
1124
1256
|
"stats": {
|
|
1125
1257
|
"size": 1234,
|
|
1126
1258
|
"lines": 48,
|
|
1127
|
-
"lastModified": "2026-08-
|
|
1259
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1128
1260
|
}
|
|
1129
1261
|
},
|
|
1130
1262
|
{
|
|
@@ -1147,7 +1279,7 @@
|
|
|
1147
1279
|
"stats": {
|
|
1148
1280
|
"size": 897,
|
|
1149
1281
|
"lines": 36,
|
|
1150
|
-
"lastModified": "2026-08-
|
|
1282
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1151
1283
|
}
|
|
1152
1284
|
},
|
|
1153
1285
|
{
|
|
@@ -1170,7 +1302,7 @@
|
|
|
1170
1302
|
"stats": {
|
|
1171
1303
|
"size": 881,
|
|
1172
1304
|
"lines": 34,
|
|
1173
|
-
"lastModified": "2026-08-
|
|
1305
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1174
1306
|
}
|
|
1175
1307
|
},
|
|
1176
1308
|
{
|
|
@@ -1193,7 +1325,7 @@
|
|
|
1193
1325
|
"stats": {
|
|
1194
1326
|
"size": 1587,
|
|
1195
1327
|
"lines": 56,
|
|
1196
|
-
"lastModified": "2026-08-
|
|
1328
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1197
1329
|
}
|
|
1198
1330
|
},
|
|
1199
1331
|
{
|
|
@@ -1216,7 +1348,7 @@
|
|
|
1216
1348
|
"stats": {
|
|
1217
1349
|
"size": 1226,
|
|
1218
1350
|
"lines": 49,
|
|
1219
|
-
"lastModified": "2026-08-
|
|
1351
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1220
1352
|
}
|
|
1221
1353
|
},
|
|
1222
1354
|
{
|
|
@@ -1239,7 +1371,7 @@
|
|
|
1239
1371
|
"stats": {
|
|
1240
1372
|
"size": 1446,
|
|
1241
1373
|
"lines": 57,
|
|
1242
|
-
"lastModified": "2026-08-
|
|
1374
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1243
1375
|
}
|
|
1244
1376
|
},
|
|
1245
1377
|
{
|
|
@@ -1262,7 +1394,7 @@
|
|
|
1262
1394
|
"stats": {
|
|
1263
1395
|
"size": 293,
|
|
1264
1396
|
"lines": 13,
|
|
1265
|
-
"lastModified": "2026-08-
|
|
1397
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1266
1398
|
}
|
|
1267
1399
|
},
|
|
1268
1400
|
{
|
|
@@ -1285,7 +1417,7 @@
|
|
|
1285
1417
|
"stats": {
|
|
1286
1418
|
"size": 453,
|
|
1287
1419
|
"lines": 21,
|
|
1288
|
-
"lastModified": "2026-08-
|
|
1420
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1289
1421
|
}
|
|
1290
1422
|
},
|
|
1291
1423
|
{
|
|
@@ -1308,7 +1440,7 @@
|
|
|
1308
1440
|
"stats": {
|
|
1309
1441
|
"size": 149,
|
|
1310
1442
|
"lines": 7,
|
|
1311
|
-
"lastModified": "2026-08-
|
|
1443
|
+
"lastModified": "2026-08-04T06:59:35.716Z"
|
|
1312
1444
|
}
|
|
1313
1445
|
},
|
|
1314
1446
|
{
|
|
@@ -1331,7 +1463,7 @@
|
|
|
1331
1463
|
"stats": {
|
|
1332
1464
|
"size": 3978,
|
|
1333
1465
|
"lines": 140,
|
|
1334
|
-
"lastModified": "2026-08-
|
|
1466
|
+
"lastModified": "2026-08-04T06:59:36.530Z"
|
|
1335
1467
|
}
|
|
1336
1468
|
},
|
|
1337
1469
|
{
|
|
@@ -1354,7 +1486,7 @@
|
|
|
1354
1486
|
"stats": {
|
|
1355
1487
|
"size": 4209,
|
|
1356
1488
|
"lines": 140,
|
|
1357
|
-
"lastModified": "2026-08-
|
|
1489
|
+
"lastModified": "2026-08-04T06:59:36.530Z"
|
|
1358
1490
|
}
|
|
1359
1491
|
},
|
|
1360
1492
|
{
|
|
@@ -1377,7 +1509,7 @@
|
|
|
1377
1509
|
"stats": {
|
|
1378
1510
|
"size": 9615,
|
|
1379
1511
|
"lines": 318,
|
|
1380
|
-
"lastModified": "2026-08-
|
|
1512
|
+
"lastModified": "2026-08-04T06:59:36.530Z"
|
|
1381
1513
|
}
|
|
1382
1514
|
},
|
|
1383
1515
|
{
|
|
@@ -1400,7 +1532,7 @@
|
|
|
1400
1532
|
"stats": {
|
|
1401
1533
|
"size": 14891,
|
|
1402
1534
|
"lines": 466,
|
|
1403
|
-
"lastModified": "2026-08-
|
|
1535
|
+
"lastModified": "2026-08-04T06:59:36.530Z"
|
|
1404
1536
|
}
|
|
1405
1537
|
},
|
|
1406
1538
|
{
|
|
@@ -1424,7 +1556,7 @@
|
|
|
1424
1556
|
"stats": {
|
|
1425
1557
|
"size": 350,
|
|
1426
1558
|
"lines": 12,
|
|
1427
|
-
"lastModified": "2026-08-
|
|
1559
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1428
1560
|
}
|
|
1429
1561
|
},
|
|
1430
1562
|
{
|
|
@@ -1448,7 +1580,7 @@
|
|
|
1448
1580
|
"stats": {
|
|
1449
1581
|
"size": 77,
|
|
1450
1582
|
"lines": 5,
|
|
1451
|
-
"lastModified": "2026-08-
|
|
1583
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1452
1584
|
}
|
|
1453
1585
|
},
|
|
1454
1586
|
{
|
|
@@ -1472,7 +1604,7 @@
|
|
|
1472
1604
|
"stats": {
|
|
1473
1605
|
"size": 720,
|
|
1474
1606
|
"lines": 44,
|
|
1475
|
-
"lastModified": "2026-08-
|
|
1607
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1476
1608
|
}
|
|
1477
1609
|
},
|
|
1478
1610
|
{
|
|
@@ -1496,7 +1628,7 @@
|
|
|
1496
1628
|
"stats": {
|
|
1497
1629
|
"size": 7031,
|
|
1498
1630
|
"lines": 276,
|
|
1499
|
-
"lastModified": "2026-08-
|
|
1631
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1500
1632
|
}
|
|
1501
1633
|
},
|
|
1502
1634
|
{
|
|
@@ -1520,7 +1652,7 @@
|
|
|
1520
1652
|
"stats": {
|
|
1521
1653
|
"size": 313,
|
|
1522
1654
|
"lines": 18,
|
|
1523
|
-
"lastModified": "2026-08-
|
|
1655
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1524
1656
|
}
|
|
1525
1657
|
},
|
|
1526
1658
|
{
|
|
@@ -1544,7 +1676,7 @@
|
|
|
1544
1676
|
"stats": {
|
|
1545
1677
|
"size": 92,
|
|
1546
1678
|
"lines": 6,
|
|
1547
|
-
"lastModified": "2026-08-
|
|
1679
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1548
1680
|
}
|
|
1549
1681
|
},
|
|
1550
1682
|
{
|
|
@@ -1568,7 +1700,7 @@
|
|
|
1568
1700
|
"stats": {
|
|
1569
1701
|
"size": 94,
|
|
1570
1702
|
"lines": 6,
|
|
1571
|
-
"lastModified": "2026-08-
|
|
1703
|
+
"lastModified": "2026-08-04T06:59:36.558Z"
|
|
1572
1704
|
}
|
|
1573
1705
|
},
|
|
1574
1706
|
{
|
|
@@ -1592,7 +1724,7 @@
|
|
|
1592
1724
|
"stats": {
|
|
1593
1725
|
"size": 120,
|
|
1594
1726
|
"lines": 8,
|
|
1595
|
-
"lastModified": "2026-08-
|
|
1727
|
+
"lastModified": "2026-08-04T06:59:36.530Z"
|
|
1596
1728
|
}
|
|
1597
1729
|
},
|
|
1598
1730
|
{
|
|
@@ -1615,7 +1747,7 @@
|
|
|
1615
1747
|
"stats": {
|
|
1616
1748
|
"size": 818,
|
|
1617
1749
|
"lines": 32,
|
|
1618
|
-
"lastModified": "2026-08-
|
|
1750
|
+
"lastModified": "2026-08-04T06:59:36.559Z"
|
|
1619
1751
|
}
|
|
1620
1752
|
},
|
|
1621
1753
|
{
|
|
@@ -1638,7 +1770,7 @@
|
|
|
1638
1770
|
"stats": {
|
|
1639
1771
|
"size": 3041,
|
|
1640
1772
|
"lines": 90,
|
|
1641
|
-
"lastModified": "2026-08-
|
|
1773
|
+
"lastModified": "2026-08-04T06:59:36.531Z"
|
|
1642
1774
|
}
|
|
1643
1775
|
},
|
|
1644
1776
|
{
|
|
@@ -1661,7 +1793,7 @@
|
|
|
1661
1793
|
"stats": {
|
|
1662
1794
|
"size": 667863,
|
|
1663
1795
|
"lines": 18947,
|
|
1664
|
-
"lastModified": "2026-08-
|
|
1796
|
+
"lastModified": "2026-08-04T06:59:36.531Z"
|
|
1665
1797
|
}
|
|
1666
1798
|
}
|
|
1667
1799
|
]
|