first commit

This commit is contained in:
2026-07-12 15:55:18 +05:30
commit ee98026cc5
404 changed files with 44522 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "basic-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run ../../packages/cli/src/index.ts dev .",
"build": "bun run ../../packages/cli/src/index.ts build .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "bun run ../../packages/cli/src/index.ts test .",
"check": "bun run typecheck && bun run lint && bun run format:check"
},
"dependencies": {
"@wrnexus/core": "workspace:*",
"@wrnexus/validation": "workspace:*",
"@wrnexus/db": "workspace:*"
},
"devDependencies": {
"@wrnexus/test": "workspace:*",
"@eslint/js": "latest",
"@tailwindcss/cli": "^4.0.0",
"eslint": "latest",
"prettier": "^3.9.4",
"tailwindcss": "^4.0.0",
"typescript-eslint": "latest"
}
}