-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "relavium-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Relavium — multi-surface, local-first AI agent workflow platform (HodeTech). Monorepo root (tooling only); the published CLI package is `relavium` (apps/cli).",
"license": "SEE LICENSE IN LICENSE",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=22.13.0",
"pnpm": ">=9"
},
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck && pnpm typecheck:tools",
"typecheck:tools": "tsc -p tsconfig.tools.json",
"test": "turbo run test",
"coverage": "vitest run --coverage",
"coverage:enforced": "node tools/coverage-gate/run.mjs",
"ci": "turbo run lint typecheck test && pnpm db:sync-check && pnpm typecheck:tools && pnpm lint:tools && turbo run build format:check && pnpm lint:fence-check && pnpm lint:engine-deps && pnpm lint:bundle-closure && pnpm smoke:cli",
"lint:fence-check": "node tools/lint-fixtures/assert-fence.mjs",
"lint:engine-deps": "node tools/engine-deps/check.mjs",
"lint:bundle-closure": "node tools/bundle-closure/check.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync:models": "pnpm turbo run build --filter=@relavium/llm && node tools/sync-models-dev/sync.mjs",
"sync:models:check": "pnpm turbo run build --filter=@relavium/llm && node tools/sync-models-dev/sync.mjs --check",
"lint:tools": "eslint tools --ignore-pattern 'tools/lint-fixtures/**'",
"db:sync-check": "node tools/db-sync/check.mjs",
"smoke:cli": "node tools/cli-smoke/check.mjs"
},
"devDependencies": {
"@eslint/js": "catalog:",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"prettier": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}