-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 5.21 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 5.21 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "trails",
"private": true,
"workspaces": [
"packages/*",
"adapters/*",
"apps/*",
"examples/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:ast-grep": "ast-grep scan --config .ast-grep/sgconfig.yml",
"changeset:check": "bun apps/trails/bin/trails.ts release check",
"version:packages": "bunx changeset version && bun run release-pack:check -- --lockfile-only --fix-lockfile",
"vocab:audit": "bun scripts/vocab-cutover-audit.ts",
"vocab:audit:json": "bun scripts/vocab-cutover-audit.ts --json",
"vocab:rewrite": "bun scripts/vocab-cutover-rewrite.ts",
"docs:links": "bun scripts/check-markdown-links.ts",
"docs:snippets": "bun scripts/check-readme-snippets.ts",
"docs:wrap-check": "bun scripts/check-hardwrap.ts",
"docs:wrap-check:json": "bun scripts/check-hardwrap.ts --json",
"type-cost:trail-input": "bun scripts/check-trail-input-type-cost.ts",
"error-taxonomy:sync": "bun scripts/sync-error-taxonomy-docs.ts",
"error-taxonomy:check": "bun scripts/sync-error-taxonomy-docs.ts --check",
"scaffold-versions:sync": "bun scripts/sync-scaffold-versions.ts",
"scaffold-versions:check": "bun scripts/sync-scaffold-versions.ts --check",
"library:smoke": "bun test packages/library/src/__tests__/compile-smoke.test.ts",
"library:dogfood:warden": "bun test packages/library/src/__tests__/warden-dogfood.test.ts",
"scratch:import-to-notion": "bun scripts/import-scratch-to-notion.ts",
"scratch:manifest": "bun scripts/scratch-inventory/build-manifest.ts",
"wayfinder:dogfood": "bun apps/trails/bin/trails.ts release smoke --check wayfinder-dogfood",
"lock:roundtrip": "bun apps/trails/bin/trails.ts release smoke --check lock-roundtrip",
"plugin:metadata:sync": "bun scripts/sync-plugin-metadata.ts",
"plugin:metadata:check": "bun scripts/sync-plugin-metadata.ts --check",
"plugin:installed-skill:check": "bun scripts/check-installed-trails-skill.ts",
"warden:agents:sync": "bun scripts/sync-agents-warden-guide.ts",
"warden:agents:check": "bun scripts/sync-agents-warden-guide.ts --check",
"warden:skills:sync": "bun scripts/sync-skill-warden-guide.ts",
"warden:skills:check": "bun scripts/sync-skill-warden-guide.ts --check",
"skillset:sync": "bun scripts/codex/skillset.ts",
"skillset:check": "bun scripts/codex/skillset.ts --check",
"clark:sync": "bun scripts/codex/skillset.ts --only agents",
"clark:check": "bun scripts/codex/skillset.ts --only agents --check",
"dead-code": "knip --no-progress",
"pre-push:checks": "bun scripts/pre-push-checks.ts",
"trails": "bun apps/trails/bin/trails.ts",
"trails:check": "bun trails warden",
"dogfood:packed": "bun apps/trails/bin/trails.ts release smoke --check packed-artifacts",
"format:check": "bun run oxlint-plugin:build && bunx ultracite check .",
"format:fix": "bun run oxlint-plugin:build && bunx ultracite fix .",
"format:file": "bun run oxlint-plugin:build && bun scripts/format-staged.ts",
"format:guard": "if git grep -nE \"(\\\\./)?node_modules/\\\\.bin/ultra[c]ite\" -- ':!bun.lock'; then echo 'Direct node_modules/.bin formatter invocation found'; exit 1; fi",
"mdlint:fix": "./node_modules/.bin/markdownlint-cli2 --fix",
"typecheck": "turbo run typecheck",
"check": "bun run lint && bun run lint:ast-grep && bun run vocab:audit && bun run format:check && bun run typecheck && bun run type-cost:trail-input && bun run docs:links && bun run docs:snippets && bun run docs:wrap-check && bun run error-taxonomy:check && bun run scaffold-versions:check && bun run warden:agents:check && bun run warden:skills:check && bun run skillset:check && bun run trails:check && bun run lock:roundtrip && bun run dead-code",
"clean": "turbo run clean --no-cache && rm -rf node_modules",
"oxlint-plugin:build": "bun run --cwd packages/oxlint-plugin build:oxlint",
"publish:check": "bun scripts/publish.ts --check",
"release-pack:check": "bun scripts/release-pack-coherence-check.ts",
"publish:label-release-pr": "bun scripts/release-policy.ts label-release-pr",
"publish:policy": "bun scripts/release-policy.ts policy",
"publish:registry-check": "bun scripts/check-registry-preflight.ts",
"publish:registry-check:published": "bun scripts/check-registry-preflight.ts --require-published",
"publish:packages": "bun scripts/publish.ts"
},
"devDependencies": {
"@ast-grep/cli": "0.42.1",
"@changesets/cli": "^2.29.8",
"@ontrails/config": "workspace:*",
"@ontrails/core": "workspace:*",
"@ontrails/oxlint-plugin": "workspace:*",
"@ontrails/trails": "workspace:*",
"@ontrails/warden": "workspace:*",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.0",
"knip": "^6.12.2",
"lefthook": "^2.1.1",
"markdownlint-cli2": "^0.22.0",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"turbo": "^2.8.10",
"typescript": "^5.9.3",
"ultracite": "7.6.2",
"zod": "catalog:"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.10",
"catalog": {
"commander": "^14.0.3",
"zod": "^4.3.5"
},
"trustedDependencies": [
"@ast-grep/cli",
"lefthook",
"oxfmt",
"oxlint"
]
}