forked from sno-ai/llmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 2.28 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
{
"name": "llmix-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/llmix/typescript",
"packages/mda-config/typescript"
],
"scripts": {
"build": "bun run build:mda-config && bun run build:llmix",
"build:llmix": "bun run --cwd packages/llmix/typescript build",
"build:mda-config": "bun run --cwd packages/mda-config/typescript build",
"check": "bun run check:versions && bun run check:mda-config && bun run check:typescript && bun run lint:mda-config:python && bun run check:mda-config:python && bun run check:python && bun run check:mda-config:rust && bun run check:rust",
"check:versions": "scripts/check-version-parity.sh",
"check:typescript": "bun run --cwd packages/llmix/typescript check",
"check:mda-config": "bun run --cwd packages/mda-config/typescript typecheck",
"test": "bun run test:mda-config && bun run test:typescript && bun run test:mda-config:python && bun run test:python && bun run test:mda-config:rust && bun run test:rust",
"test:typescript": "bun run --cwd packages/llmix/typescript test",
"test:mda-config": "bun run --cwd packages/mda-config/typescript test",
"test:python": "uv run --project packages/llmix/python --extra dev pytest -c packages/llmix/python/pyproject.toml packages/llmix/python/tests",
"test:mda-config:python": "uv run --project packages/mda-config/python pytest -c packages/mda-config/python/pyproject.toml packages/mda-config/python/tests",
"test:rust": "cargo test --manifest-path packages/llmix/rust/Cargo.toml",
"test:mda-config:rust": "cargo test --manifest-path packages/mda-config/rust/Cargo.toml",
"check:python": "uv run --project packages/llmix/python --extra dev pyright -p packages/llmix/python",
"lint:mda-config:python": "uv run --project packages/mda-config/python ruff check packages/mda-config/python",
"check:mda-config:python": "uv run --project packages/mda-config/python pyright -p packages/mda-config/python",
"check:rust": "cargo check --manifest-path packages/llmix/rust/Cargo.toml",
"check:mda-config:rust": "cargo check --manifest-path packages/mda-config/rust/Cargo.toml",
"clean": "bun run --cwd packages/llmix/typescript clean && rm -rf packages/mda-config/typescript/dist"
},
"devDependencies": {
"@types/node": "^20.14.0"
}
}