feat: Added base dependencies zod, sqlite (closes #2)

This commit is contained in:
2026-07-04 12:44:34 +05:30
parent e11f18a69a
commit b17a749741
4 changed files with 284 additions and 2 deletions

View File

@@ -9,7 +9,8 @@
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
"format:check": "prettier . --check",
"watch": "tsc -b --watch"
},
"keywords": [],
"author": "",
@@ -24,11 +25,13 @@
"type": "module",
"devDependencies": {
"@eslint/js": "^10.0.1",
"better-sqlite3": "^12.11.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"
"typescript-eslint": "^8.62.1",
"zod": "^4.4.3"
}
}