-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@metabase/cli",
"version": "0.1.12",
"description": "Metabase CLI",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/metabase/mb-cli.git"
},
"bin": {
"mb": "./dist/cli.mjs"
},
"files": [
"dist",
"skills",
"skill-data",
".claude-plugin"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"start": "node dist/cli.mjs",
"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",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:skills": "uvx skillsaw lint skill-data/ --strict",
"format": "oxfmt",
"format:check": "oxfmt --check",
"sync:representations": "bun run scripts/sync-representations.ts",
"prepublishOnly": "tsdown && publint"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"@napi-rs/keyring": "^1.3.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"citty": "^0.2.2",
"cli-table3": "^0.6.5",
"semver": "^7.8.0",
"yaml": "^2.8.4",
"zod": "^4.0.0"
},
"devDependencies": {
"@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.9.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.6"
}
}