-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.54 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
{
"name": "reticle-monorepo",
"version": "2.6.0",
"private": true,
"description": "Reticle — the proof layer for AI agents. Observe and verify a running web app over MCP, no screenshots.",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22.12"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "node scripts/check-boundaries.mjs && node scripts/check-lossy-transforms.mjs && turbo run lint",
"check:boundaries": "node scripts/check-boundaries.mjs",
"check:lossy": "node scripts/check-lossy-transforms.mjs",
"typecheck": "turbo run typecheck",
"test": "turbo run test:unit",
"test:unit": "turbo run test:unit",
"test:coverage": "turbo run test:coverage",
"test:e2e": "bash apps/e2e/run-ci.sh",
"format": "prettier --write .",
"format:check": "prettier --check .",
"bench": "node bench/harness/bench-all.mjs",
"bench:full": "node bench/harness/bench-all.mjs --full",
"bench:gate": "node bench/harness/gate.mjs",
"bench:dashboard": "node bench/dashboard.mjs",
"publish": "pnpm build && pnpm -r publish --access public --no-git-checks",
"publish:dry-run": "pnpm build && pnpm -r publish --access public --no-git-checks --dry-run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"docs:api": "typedoc",
"test:e2e:desktop": "bash apps/e2e/run-desktop.sh",
"gate:install": "node apps/e2e/install-gate.mjs",
"gate:install:self-test": "node apps/e2e/install-gate.mjs --self-test",
"gate:soak": "node apps/e2e/soak.mjs",
"gate:soak:self-check": "node apps/e2e/soak.mjs --self-check",
"gate:soak:record": "node apps/e2e/soak.mjs --rounds 20 --idle-ms 2000 --record",
"matrix": "node apps/e2e/matrix.mjs",
"matrix:validate": "node apps/e2e/matrix.mjs --self-check && for f in docs/matrix/*/*.json; do node apps/e2e/matrix.mjs --validate \"$f\" || exit 1; done",
"matrix:compat": "node apps/e2e/client-compat.mjs",
"knip": "npx --yes knip --no-progress",
"hooks:install": "ln -sf ../../pre-commit.sh .git/hooks/pre-commit && echo 'pre-commit hook installed'"
},
"pnpm": {
"overrides": {
"esbuild@>=0.18.0 <0.28.1": "0.28.1",
"undici@<7.29.0": "7.29.0",
"postcss@<8.5.23": "8.5.23",
"hono@<4.12.34": "4.12.34",
"@hono/node-server@<2.0.10": "2.0.12",
"next@>=13.0.0 <15.5.21": "15.5.21",
"next@>=16.0.0 <16.2.11": "16.2.11",
"body-parser@<1.20.6": "1.20.6",
"body-parser@>=2.0.0 <2.3.0": "2.3.0",
"brace-expansion@<1.1.16": "1.1.16",
"brace-expansion@>=2.0.0 <2.1.2": "2.1.2",
"brace-expansion@>=3.0.0 <5.0.8": "5.0.8",
"fast-uri@<3.1.5": "3.1.5",
"js-yaml@>=4.0.0 <4.3.1": "4.3.1",
"sharp@<0.35.0": "0.35.0",
"svgo@>=4.0.0 <4.0.2": "4.0.2",
"valibot@<=1.4.1": "1.4.2",
"ip-address@<10.3.1": "10.3.1",
"electron@<43.3.0": "43.3.0"
},
"onlyBuiltDependencies": [
"esbuild",
"electron"
]
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@reticlehq/core": "workspace:*",
"@reticlehq/eslint-plugin": "workspace:*",
"@reticlehq/next": "workspace:*",
"@reticlehq/server": "workspace:*",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "3.2.6",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^29.1.1",
"playwright": "^1.60.0",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typedoc": "^0.28.20",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^3.2.6",
"ws": "^8.21.0"
}
}