{ "name": "basic-app", "version": "0.1.0", "private": true, "type": "module", "scripts": { "dev": "bun run ../../packages/cli/src/index.ts dev .", "build": "bun run ../../packages/cli/src/index.ts build .", "typecheck": "tsc --noEmit -p tsconfig.json", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier . --write", "format:check": "prettier . --check", "test": "bun run ../../packages/cli/src/index.ts test .", "check": "bun run typecheck && bun run lint && bun run format:check" }, "dependencies": { "@wrnexus/core": "workspace:*", "@wrnexus/validation": "workspace:*", "@wrnexus/db": "workspace:*" }, "devDependencies": { "@wrnexus/test": "workspace:*", "@eslint/js": "latest", "@tailwindcss/cli": "^4.0.0", "eslint": "latest", "prettier": "^3.9.4", "tailwindcss": "^4.0.0", "typescript-eslint": "latest" } }