initial
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-06-26 09:21:14 +01:00
commit 194330fb47
40 changed files with 11873 additions and 0 deletions

20
package.json Executable file
View File

@@ -0,0 +1,20 @@
{
"name": "adventureos",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev -w @adventureos/web",
"build": "npm run build -w @adventureos/web",
"start": "npm run start -w @adventureos/web",
"db:generate": "npm run generate -w @adventureos/db",
"db:migrate": "npm run migrate -w @adventureos/db",
"db:seed": "npm run seed -w @adventureos/db",
"lint": "npm run lint -w @adventureos/web",
"test": "npm run test -w @adventureos/web && npm run test -w @adventureos/shared",
"test:shared": "npm run test -w @adventureos/shared"
}
}