diff --git a/bun.lock b/bun.lock index 9d95609c91..6c96b50eef 100644 --- a/bun.lock +++ b/bun.lock @@ -6,6 +6,7 @@ "devDependencies": { "@eslint/js": "^10.0.1", "@ianvs/prettier-plugin-sort-imports": "^4.7.1", + "@inertiajs/core": "^3.0.0", "@inertiajs/svelte": "^3.0.0", "@inertiajs/vite": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^7.0.0", diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000000..033c9df871 --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,9 @@ +telemetry = false + +[env] +file = false + +[install] +linker = "isolated" +frozenLockfile = true +minimumReleaseAge = 604800 # 7 days diff --git a/package.json b/package.json index 75a7ed2f02..bd1058c4d3 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "devDependencies": { "@eslint/js": "^10.0.1", "@ianvs/prettier-plugin-sort-imports": "^4.7.1", + "@inertiajs/core": "^3.0.0", "@inertiajs/svelte": "^3.0.0", "@inertiajs/vite": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^7.0.0",