mirror of
https://github.com/LukeHagar/subdomain-test.git
synced 2025-12-06 04:21:26 +00:00
Replace pnpm with Bun for package management. Update Dockerfile and README. Co-authored-by: lukeslakemail <lukeslakemail@gmail.com>
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "subdomain-test",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun run vite dev",
|
|
"build": "bun run vite build",
|
|
"preview": "bun run vite preview",
|
|
"prepare": "bun run svelte-kit sync || echo ''",
|
|
"check": "bun run svelte-kit sync && bun run svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "bun run svelte-kit sync && bun run svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"format": "bun run prettier --write .",
|
|
"lint": "bun run prettier --check .",
|
|
"start": "node build/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-auto": "^6.1.0",
|
|
"@sveltejs/adapter-node": "^5.3.1",
|
|
"@sveltejs/kit": "^2.37.0",
|
|
"@sveltejs/vite-plugin-svelte": "^6.1.3",
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"@tailwindcss/vite": "^4.1.12",
|
|
"parse-domain": "^8.2.2",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-svelte": "^3.4.0",
|
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
"svelte": "^5.38.6",
|
|
"svelte-check": "^4.3.1",
|
|
"tailwindcss": "^4.1.12",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^7.1.3"
|
|
},
|
|
"bun": {
|
|
"trustedDependencies": [
|
|
"@tailwindcss/oxide",
|
|
"esbuild"
|
|
]
|
|
}
|
|
} |