Rust library to generate static websites
at fix/misc-errors 29 lines 948 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 "test:e2e": "cd e2e && pnpm run test" 17 }, 18 "dependencies": { 19 "@tailwindcss/cli": "^4.1.18", 20 "tailwindcss": "^4.1.18" 21 }, 22 "devDependencies": { 23 "@typescript/native-preview": "7.0.0-dev.20260109.1", 24 "oxfmt": "^0.23.0", 25 "oxlint": "^1.38.0", 26 "oxlint-tsgolint": "^0.11.0" 27 }, 28 "packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48" 29}