[READ-ONLY] Mirror of https://github.com/probablykasper/starchart. GitHub star history graph starchart.kasper.space
chart github github-api github-star graph history star star-history stargazers stars
0

Configure Feed

Select the types of activity you want to include in your feed.

Update zod

Kasper (Jan 29, 2026, 1:41 PM +0100) 45c9aa1f 4ab3c4d2

+6 -6
+4 -4
package-lock.json
··· 28 28 "typescript": "^5.9.3", 29 29 "typescript-eslint": "^8.54.0", 30 30 "vite": "^6.4.1", 31 - "zod": "^3.25.76" 31 + "zod": "^4.3.6" 32 32 } 33 33 }, 34 34 "node_modules/@cloudflare/kv-asset-handler": { ··· 5847 5847 "license": "MIT" 5848 5848 }, 5849 5849 "node_modules/zod": { 5850 - "version": "3.25.76", 5851 - "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", 5852 - "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", 5850 + "version": "4.3.6", 5851 + "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz", 5852 + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", 5853 5853 "dev": true, 5854 5854 "license": "MIT", 5855 5855 "funding": {
+1 -1
package.json
··· 32 32 "typescript": "^5.9.3", 33 33 "typescript-eslint": "^8.54.0", 34 34 "vite": "^6.4.1", 35 - "zod": "^3.25.76" 35 + "zod": "^4.3.6" 36 36 }, 37 37 "prettier": { 38 38 "useTabs": true,
+1 -1
src/routes/+page.svelte
··· 20 20 ).json() 21 21 22 22 const schema = z.object({ 23 - stars: z.array(z.tuple([z.string(), z.number().int(), z.number().int()])), 23 + stars: z.array(z.tuple([z.string(), z.number().int(), z.int()])), 24 24 }) 25 25 26 26 const result = schema.parse(full_api_request)