The first 2 weeks is ended.
Some checks failed
CI / validate (push) Failing after 14m50s

This commit is contained in:
2026-08-14 10:48:54 +05:00
commit 1774496cf9
48 changed files with 10825 additions and 0 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "dungeons-and-ground",
"private": true,
"type": "module",
"version": "0.1.0",
"engines": {
"node": "^18.20.5 || ^20.9.0 || >=22.0.0"
},
"packageManager": "pnpm@10.15.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm --filter @dng/web dev",
"dev:all": "pnpm --parallel --filter @dng/web --filter @dng/worker dev",
"dev:worker": "pnpm --filter @dng/worker dev",
"build": "pnpm -r --if-present build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "pnpm -r --if-present typecheck"
},
"devDependencies": {
"@types/node": "^18.19.0",
"typescript": "^5.9.2",
"vite": "6.0.11",
"vitest": "3.2.4"
},
"pnpm": {
"overrides": {
"@nuxt/cli": "3.21.1",
"@nuxt/test-utils": "3.15.4",
"nitropack": "2.10.4",
"vite": "6.0.11"
}
}
}