Initial version (#1)
All checks were successful
Build / build (push) Successful in 41s
Lint / lint (push) Successful in 13s

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2025-09-18 01:26:10 +02:00
parent ab2fff9a9f
commit c0cac90a66
47 changed files with 1633 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "website",
"packageManager": "bun@1.2.22",
"private": true,
"workspaces": ["./packages/*"],
"scripts": {
"lint:tsc": "turbo lint:tsc",
"clean:cache": "rm -rf .turbo",
"clean:dist": "turbo clean:dist && rm -rf dist",
"clean:modules": "turbo clean:modules && rm -rf node_modules"
},
"devDependencies": {
"@effect/language-service": "^0.40.0",
"@types/bun": "latest",
"npm-check-updates": "^18.1.1",
"npm-sort": "^0.0.4",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
}
}