chore: bootstrap ashen realms monorepo

This commit is contained in:
Bastian Wagner
2026-08-18 17:01:21 +02:00
commit 9e92731645
50 changed files with 24031 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "ashen-realms",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev:web": "npm run start --workspace=@ashen-realms/web",
"dev:api": "npm run start:dev --workspace=@ashen-realms/api",
"build:web": "npm run build --workspace=@ashen-realms/web",
"build:api": "npm run build --workspace=@ashen-realms/api",
"build": "npm run build:web && npm run build:api",
"test": "npm run test --workspaces --if-present"
},
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "https://gitea.forgecore.work/bastian/ashen-realms.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"private": "true"
}