{ "name": "template", "private": true, "packageManager": "pnpm@9.15.4", "engines": { "node": ">=20" }, "scripts": { "build": "turbo run build", "dev": "turbo run dev", "lint": "turbo run lint", "test": "turbo run test", "test:e2e": "turbo run test:e2e", "test:stories": "turbo run test:stories", "typecheck": "turbo run typecheck", "conformance": "node scripts/conformance.mjs", "work": "node scripts/work/cli.mjs", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"", "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"", "prepare": "husky" }, "devDependencies": { "@ai-hero/sandcastle": "*", "@turbo/gen": "^2.4.0", "@types/node": "^22.0.0", "husky": "^9.0.0", "lint-staged": "^16.0.0", "prettier": "^3.5.0", "turbo": "^2.4.0", "typescript": "^5.8.0" }, "lint-staged": { "*.{ts,tsx,js,mjs,jsx}": [ "eslint --fix --max-warnings=0" ], "*.{ts,tsx,js,mjs,jsx,json,md,yml,yaml}": [ "prettier --write" ] } }