AppView in a box as a Vite plugin thing hatk.dev
2
fork

Configure Feed

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

at 200669cf9d1eb29abba8d2414c683c22c6f118d4 27 lines 592 B view raw
1{ 2 "name": "hatk", 3 "private": true, 4 "workspaces": [ 5 "packages/*", 6 "docs/site" 7 ], 8 "type": "module", 9 "scripts": { 10 "lint": "oxlint .", 11 "typecheck": "tsc --noEmit", 12 "format": "oxfmt --write .", 13 "format:check": "oxfmt --check .", 14 "check": "tsc --noEmit && oxlint . && oxfmt --check .", 15 "docs": "npm run dev -w @hatk/docs", 16 "docs:build": "npm run build -w @hatk/docs" 17 }, 18 "devDependencies": { 19 "@types/node": "^25.3.0", 20 "oxfmt": "^0.35.0", 21 "oxlint": "^1.50.0", 22 "typescript": "^5.9.3" 23 }, 24 "engines": { 25 "node": ">=25.0.0" 26 } 27}