-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 3.05 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
{
"name": "mrtdown-data",
"version": "1.0.0",
"private": true,
"description": "Data repository",
"packageManager": "npm@11.11.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:packages",
"check": "npm run lint && npm run check:boundaries && npm run check:docs",
"check:boundaries": "node scripts/check-package-boundaries.mjs",
"check:docs": "node scripts/check-docs-links.mjs",
"lint": "biome check AGENTS.md CLAUDE.md README.md docs fixtures .changeset .github/copilot-instructions.md biome.json package.json turbo.json vitest.config.ts packages scripts",
"data:import:lta-station-exits": "node scripts/import-lta-station-exits.mjs",
"data:platforms:infer": "node scripts/infer-station-platforms.mjs",
"fixtures:generate": "node scripts/generate-fixtures.mjs",
"typecheck": "npm run build:packages",
"build:packages": "turbo run build --filter=@mrtdown/*",
"build:core": "turbo run build --filter=@mrtdown/core",
"build:ingest-contracts": "turbo run build --filter=@mrtdown/ingest-contracts",
"build:fs": "turbo run build --filter=@mrtdown/fs",
"build:triage": "turbo run build --filter=@mrtdown/triage",
"build:cli": "turbo run build --filter=@mrtdown/cli",
"test:packages": "turbo run test --filter=@mrtdown/*",
"test:core": "turbo run test --filter=@mrtdown/core",
"test:ingest-contracts": "turbo run test --filter=@mrtdown/ingest-contracts",
"test:fs": "turbo run test --filter=@mrtdown/fs",
"test:triage": "turbo run test --filter=@mrtdown/triage",
"test:eval": "npm --workspace @mrtdown/triage run test:eval",
"test:eval:changed": "npm --workspace @mrtdown/triage run test:eval -- --passWithNoTests --changed",
"test:cli": "turbo run test --filter=@mrtdown/cli",
"triage:regressions": "npm run build:triage && npm --workspace @mrtdown/triage run regressions --",
"triage:reextract": "npm run build:triage && npm --workspace @mrtdown/triage run reextract --",
"data:validate": "npm run build:cli && node packages/cli/dist/index.js --data-dir data validate",
"fixtures:validate": "npm run fixtures:generate && npm run build:cli && node packages/cli/dist/index.js --data-dir fixtures/generated/data validate",
"pages:build": "npm run fixtures:generate && npm run build:fs && node scripts/build-pages-artifact.mjs",
"changeset": "changeset",
"release:version": "changeset version && npm install --package-lock-only --ignore-scripts",
"release:publish": "npm run build:packages && changeset publish",
"pretest": "npm run fixtures:generate",
"test": "vitest --run",
"ingest:webhook": "npm run build:triage && node packages/triage/dist/scripts/ingestViaWebhook.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@changesets/cli": "^2.31.0",
"@types/luxon": "^3.7.1",
"@types/node": "24.13.2",
"luxon": "^3.7.2",
"tsx": "^4.22.4",
"turbo": "^2.8.20",
"typescript": "^5.8.3",
"vitest": "^4.1.8"
},
"overrides": {
"zod": "^4.0.14"
}
}