-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.79 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
51
52
{
"name": "metabase-cli-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "bun run --filter @metabase/client build && bun run --filter @metabase/cli build",
"dev": "bun run --filter @metabase/cli dev",
"start": "bun run --filter @metabase/cli start",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:e2e": "vitest run --project e2e",
"test:e2e:watch": "vitest --project e2e",
"e2e:up": "docker compose -f tests/e2e/docker-compose.yml up -d --wait",
"e2e:down": "docker compose -f tests/e2e/docker-compose.yml down -v",
"e2e:bootstrap": "bun tests/e2e/setup/bootstrap.ts",
"e2e:matrix": "bun scripts/e2e-matrix.ts",
"e2e:logs": "docker compose -f tests/e2e/docker-compose.yml logs -f metabase",
"check": "bun run typecheck && bun run lint && bun run format:check && bun run test && bun run lint:skills",
"check:fix": "bun run lint:fix && bun run format",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:skills": "uvx skillsaw@0.17.0 lint packages/cli/skill-data/ --strict",
"format": "oxfmt",
"format:check": "oxfmt --check",
"sync:representations": "bun run scripts/sync-representations.ts"
},
"devDependencies": {
"@clack/core": "^0.3.5",
"@metabase/client": "workspace:*",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"@types/semver": "^7.7.1",
"execa": "^9.5.2",
"fast-check": "^4.7.0",
"js-yaml": "^4.1.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"publint": "^0.3.0",
"tsdown": "^0.22.14",
"typescript": "^5.7.2",
"unrun": "^0.3.1",
"vitest": "^2.1.8",
"zod": "^4.0.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}