Some checks failed
morphit-ci / TypeScript typecheck (sweep all workspaces) (push) Has been cancelled
morphit-ci / apps/web svelte-check (svelte-kit sync + svelte-aware tsc) (push) Has been cancelled
morphit-ci / Integration tests (real Postgres 16) (push) Has been cancelled
morphit-ci / ansible-lint (playbook quality gate) (push) Has been cancelled
morphit-ci / Smoke suite (run-smokes.sh, triple-pulse) (push) Has been cancelled
morphit-release / Build + publish release tarball (push) Has been cancelled
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"name": "morphit-ops",
|
|
"version": "1.11.1",
|
|
"description": "Morphit operator CLI — status, drain queue, signups, abuse alerts. Read-mostly view into the indexer + relay shared database.",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "AGPL-3.0-only",
|
|
"engines": {
|
|
"node": ">=22.0.0"
|
|
},
|
|
"bin": {
|
|
"morphit-ops": "bin/morphit-ops.mjs"
|
|
},
|
|
"files": [
|
|
"bin/",
|
|
"dist/",
|
|
"src/"
|
|
],
|
|
"scripts": {
|
|
"build": "node scripts/build.mjs",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check .",
|
|
"start": "tsx src/main.ts",
|
|
"dev": "tsx src/main.ts",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@beblurt/dblurt": "^0.17.0",
|
|
"@morphit/node-health": "*",
|
|
"pg": "^8.13.0",
|
|
"tsx": "^4.19.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.9.0",
|
|
"@types/pg": "^8.11.10",
|
|
"esbuild": "^0.19.12",
|
|
"prettier": "~3.6.2",
|
|
"typescript": "^5.6.3",
|
|
"vitest": "^2.1.9"
|
|
}
|
|
}
|