Rust library to generate static websites
at feat/js-ugh 28 lines 907 B view raw
1{ 2 "name": "root", 3 "private": true, 4 "type": "module", 5 "scripts": { 6 "check": "pnpm run check:js && pnpm run check:rs", 7 "check:ts": "tsgo", 8 "check:rs": "cargo check", 9 "lint": "pnpm run lint:ts && pnpm run lint:rs", 10 "lint:ts": "oxlint --type-aware", 11 "lint:rs": "cargo clippy", 12 "lint:fix": "oxlint --fix --type-aware && cargo clippy --fix --allow-dirty --allow-staged", 13 "format": "pnpm run format:ts && pnpm run format:rs", 14 "format:ts": "oxfmt", 15 "format:rs": "cargo fmt" 16 }, 17 "dependencies": { 18 "@tailwindcss/cli": "^4.1.18", 19 "tailwindcss": "^4.1.18" 20 }, 21 "devDependencies": { 22 "@typescript/native-preview": "7.0.0-dev.20260109.1", 23 "oxfmt": "^0.23.0", 24 "oxlint": "^1.38.0", 25 "oxlint-tsgolint": "^0.11.0" 26 }, 27 "packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48" 28}