-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 4.46 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 4.46 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
{
"name": "nexus-gateway",
"version": "0.1.0",
"private": true,
"description": "Enterprise AI Traffic Gateway - compliance, routing, caching, and analytics",
"workspaces": [
"packages/*",
"packages/agent/ui/frontend",
"tools/db-migrate"
],
"scripts": {
"prepare": "node scripts/setup-git-hooks.mjs",
"db:push": "cd tools/db-migrate && npm run db:push",
"dev:control-plane-ui": "npm run dev --workspace=packages/control-plane-ui",
"dev": "npm run dev:control-plane-ui",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"check:i18n": "node scripts/check-i18n-parity.mjs",
"check:design-tokens": "node scripts/check-design-tokens.mjs",
"check:design-tokens:hints": "node scripts/check-design-tokens.mjs --fix-suggest",
"check:theme-completeness": "node scripts/check-theme-completeness.mjs",
"check:brand-strings": "node scripts/check-brand-strings.mjs",
"check:effect-tokens": "node scripts/check-effect-tokens.mjs",
"check:tz": "bash scripts/check-timezone-correctness.sh",
"check:terminology": "bash scripts/check-terminology.sh",
"check:json-dupkeys": "node scripts/check-json-dupkeys.mjs",
"check:arch-doc-triggers": "node scripts/check-arch-doc-triggers.mjs",
"check:e2e-matrix": "node scripts/check-e2e-matrix-refs.mjs",
"check:iam-routes": "node scripts/check-iam-route-coverage.mjs",
"check:doc-lockstep": "node scripts/check-doc-lockstep.mjs",
"check:doc-lockstep:staged": "node scripts/check-doc-lockstep.mjs --staged",
"check:openapi-semantics": "node scripts/check-openapi-semantics.mjs",
"check:openapi-semantics:staged": "node scripts/check-openapi-semantics.mjs --staged",
"check:useapi-querykey": "node scripts/check-useapi-querykey.mjs",
"check:useapi-querykey:strict": "node scripts/check-useapi-querykey.mjs --strict",
"check:no-redis-pubsub": "node scripts/check-no-redis-pubsub.mjs",
"check:no-redis-pubsub:strict": "node scripts/check-no-redis-pubsub.mjs --strict",
"check:ui-shared-boundary": "node scripts/check-ui-shared-boundary.mjs",
"check:ui-shared-boundary:strict": "node scripts/check-ui-shared-boundary.mjs --strict",
"check:sidebar-icon-mapping": "node scripts/check-sidebar-icon-mapping.mjs",
"check:sidebar-icon-mapping:strict": "node scripts/check-sidebar-icon-mapping.mjs --strict",
"check:workspace-replace": "node scripts/check-workspace-replace.mjs --selftest && node scripts/check-workspace-replace.mjs",
"check:jobs-catalogue": "bash scripts/check-jobs-catalogue.sh",
"check:no-prod-todos": "node scripts/check-no-prod-todos.mjs",
"check:no-prod-todos:strict": "node scripts/check-no-prod-todos.mjs --strict",
"check:comment-program-refs": "node scripts/check-comment-program-refs.mjs",
"check:comment-program-refs:strict": "node scripts/check-comment-program-refs.mjs --strict",
"check:no-yaml-secrets": "node scripts/check-no-yaml-secrets.mjs",
"check:no-yaml-secrets:strict": "node scripts/check-no-yaml-secrets.mjs --strict",
"check:dev-asset-urls": "node scripts/check-no-dev-asset-urls.mjs",
"check:coverage": "bash scripts/check-go-coverage.sh",
"check:keystore-seam": "bash scripts/check-keystore-seam.sh",
"check:coverage:core": "bash scripts/check-core-path-coverage.sh",
"check:coverage:strict": "bash scripts/check-go-coverage.sh --strict-allowlist",
"check:coverage:ui": "bash scripts/check-ui-coverage.sh",
"check:file-size": "bash scripts/check-file-size-ratchet.sh",
"check:file-size:staged": "bash scripts/check-file-size-ratchet.sh --staged",
"check:all": "npm-run-all -p check:i18n check:design-tokens check:theme-completeness check:brand-strings check:effect-tokens check:tz check:terminology check:json-dupkeys check:arch-doc-triggers check:e2e-matrix check:iam-routes check:doc-lockstep check:openapi-semantics check:migration-timestamps check:useapi-querykey check:no-redis-pubsub check:ui-shared-boundary check:sidebar-icon-mapping check:workspace-replace check:jobs-catalogue check:no-prod-todos check:comment-program-refs check:no-yaml-secrets check:dev-asset-urls check:coverage check:coverage:core check:coverage:ui check:file-size || node -e \"console.log('Some checks failed; install npm-run-all or run individually')\""
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"concurrently": "^10.0.3",
"jsdom": "^29.1.1"
},
"overrides": {
"@hono/node-server": "^1.19.13"
}
}