AppView in a box as a Vite plugin thing hatk.dev
at main 30 lines 784 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 "build": "npm run build -w @hatk/hatk", 16 "publish:hatk": "npm publish -w @hatk/hatk --tag alpha", 17 "release": "npm run build -w @hatk/hatk && npm publish -w @hatk/hatk --tag alpha", 18 "docs": "npm run dev -w @hatk/docs", 19 "docs:build": "npm run build -w @hatk/docs" 20 }, 21 "devDependencies": { 22 "@types/node": "^25.3.0", 23 "oxfmt": "^0.35.0", 24 "oxlint": "^1.50.0", 25 "typescript": "^5.9.3" 26 }, 27 "engines": { 28 "node": ">=25.0.0" 29 } 30}