Establish project foundation and shared utilities

This commit is contained in:
2026-07-27 07:07:30 +00:00
parent f465aa761b
commit 6923040484
13 changed files with 2343 additions and 902 deletions
+26 -16
View File
@@ -17,12 +17,14 @@
"scripts": {
"analyze": "tsdown --clean --no-fixed-extension --sourcemap source/index.ts && esbuild-analyzer dist/",
"build": "tsdown --clean --sourcemap source/index.ts",
"dev": "tsx watch source/index.ts",
"docs": "typedoc --hideGenerator --categorizeByGroup",
"format": "prettier --write . && eslint --fix",
"spellcheck": "cspell 'source/**' 'test/**' 'playground/**'",
"style": "eslint",
"syntax": "tsc --noEmit",
"test": "vitest --dir test/ --test-timeout=15000 --passWithNoTests --run --coverage"
"test": "vitest --dir test/ --test-timeout=15000 --passWithNoTests --run --coverage",
"test:watch": "vitest"
},
"files": [
"dist"
@@ -42,29 +44,37 @@
"xo cash"
],
"dependencies": {
"@bitauth/libauth": "^3.1.0-next.8"
"@bitauth/libauth": "^3.1.0-next.8",
"@hono/node-server": "^2.0.5",
"@xo-cash/utils": "^0.0.2-development.15512051893",
"better-sqlite3": "^12.11.1",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"hono": "^4.12.26",
"kysely": "^0.29.2",
"ws": "^8.21.0",
"zod": "^4.4.3"
},
"overrides": {
"echarts": "6.1.0"
},
"devDependencies": {
"@chalp/eslint-airbnb": "^1.3.0",
"@generalprotocols/cspell-dictionary": "^1.0.1",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitest/coverage-v8": "^4.0.17",
"@types/better-sqlite3": "^7.6.13",
"@types/debug": "^4.1.13",
"@types/node": "^25.9.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.9",
"@viz-kit/esbuild-analyzer": "^1.0.0",
"@xo-cash/eslint-config": "1.0.2",
"cspell": "^9.6.0",
"eslint": "^9.39.2",
"prettier": "^3.6.2",
"tsdown": "^0.20.0-beta.4",
"typedoc": "^0.28.16",
"cspell": "^10.0.1",
"prettier": "^3.8.4",
"tsdown": "^0.22.14",
"tsx": "^4.22.4",
"typedoc": "^0.28.20",
"typedoc-plugin-coverage": "^4.0.2",
"typescript": "^5.3.2",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.17"
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.9"
}
}