UNPKG

@kevinmarrec/create-cloudstack-app

Version:

CLI that scaffolds an opinionated Bun & Vue fullstack application.

38 lines (37 loc) 1.15 kB
{ "name": "app", "type": "module", "private": true, "packageManager": "bun@1.2.8", "engines": { "node": "lts/*" }, "workspaces": [ "backend", "frontend" ], "scripts": { "check": "bun run check:unused && bun run check:eslint && bun run check:stylelint && bun run check:types", "check:eslint": "eslint .", "check:stylelint": "stylelint '**/*.{css,scss,vue}' --ignorePath .gitignore", "check:types": "vue-tsc --noEmit", "check:unused": "knip -n", "dev": "bun scripts/dev.ts", "lint": "bun run check:eslint && bun run check:stylelint", "lint:inspect": "bunx @eslint/config-inspector" }, "devDependencies": { "@kevinmarrec/cloudstack-eslint-config": "workspace:*", "@kevinmarrec/cloudstack-knip-config": "workspace:*", "@kevinmarrec/cloudstack-stylelint-config": "workspace:*", "@kevinmarrec/cloudstack-taze-config": "workspace:*", "@kevinmarrec/cloudstack-tsconfig": "workspace:*", "concurrently": "^9.1.2", "eslint": "^9.23.0", "knip": "^5.46.4", "stylelint": "^16.17.0", "taze": "^19.0.4", "typescript": "~5.8.2", "vue-tsc": "^2.2.8" } }