feat: Scaffold Initial monorepo structure (closes #1)

This commit is contained in:
2026-07-04 12:35:27 +05:30
commit e11f18a69a
38 changed files with 1280 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "omnia",
"version": "0.0.0",
"private": true,
"description": "",
"scripts": {
"build": "tsc -b",
"clean": "git clean -xfd",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"keywords": [],
"author": "",
"license": "ISC",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.9.0",
"onFail": "download"
}
},
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1"
}
}