-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 5.18 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 5.18 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "diffsplain",
"version": "0.13.1",
"description": "Review Git diffs one file at a time with coding agent notes beside each patch.",
"license": "MIT",
"keywords": [
"codex",
"claude",
"copilot",
"cursor",
"opencode",
"diff",
"git",
"github",
"pull-request",
"review"
],
"repository": {
"type": "git",
"url": "git+https://github.com/itsjling/diffsplain.git"
},
"homepage": "https://github.com/itsjling/diffsplain#readme",
"bugs": {
"url": "https://github.com/itsjling/diffsplain/issues"
},
"bin": {
"diffsplain": "scripts/present.mjs"
},
"files": [
"dist",
"scripts/access-token.mjs",
"scripts/agent-config.mjs",
"scripts/agent-exclusions.mjs",
"scripts/agent-note-output.mjs",
"scripts/agent-review.mjs",
"scripts/agent-usage.mjs",
"scripts/build-diff-data.mjs",
"scripts/cli-args.mjs",
"scripts/cache.mjs",
"scripts/coding-agents.mjs",
"scripts/dev.mjs",
"scripts/doctor.mjs",
"scripts/generate-summaries.mjs",
"scripts/local-target.mjs",
"scripts/mock-agent.mjs",
"scripts/present.mjs",
"scripts/presenter-runtime.mjs",
"scripts/review-chat.mjs",
"scripts/review-chat-context.mjs",
"scripts/review-chat-controller.mjs",
"scripts/review-chat-provider.mjs",
"scripts/serve-built.mjs",
"scripts/summary-path.mjs",
"scripts/support-record.mjs"
],
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.18.0",
"scripts": {
"cloud:check": "pnpm run check && pnpm run test:cloud",
"check": "node scripts/check.mjs",
"demo": "vite --port 2299",
"dev": "vite --port 2299",
"dev:live": "node scripts/dev.mjs live",
"dev:mock": "node scripts/dev.mjs mock",
"docs:dev": "cd docs && blume dev",
"docs:build": "cd docs && blume build",
"docs:check": "node --test tests/cli-docs.test.mjs && cd docs && blume check && blume validate",
"docs:preview": "cd docs && blume preview",
"diffsplain": "node scripts/present.mjs",
"doctor": "node scripts/present.mjs doctor",
"fallow:audit": "fallow audit",
"present": "node scripts/present.mjs",
"package:verify": "node scripts/check.mjs --package-only",
"release:publish": "node scripts/release.mjs publish",
"release:verify": "node scripts/release.mjs verify",
"summarize": "node scripts/generate-summaries.mjs",
"snapshot": "node scripts/build-diff-data.mjs",
"watch:diff": "node scripts/build-diff-data.mjs --watch",
"build": "vite build && node scripts/clean-built-live-data.mjs",
"benchmark:gate": "node benchmarks/performance-gate.mjs",
"benchmark:canary": "node benchmarks/real-codex-reasoning.mjs",
"start": "node scripts/serve-built.mjs",
"prepack": "pnpm run build",
"setup": "pnpm install --frozen-lockfile",
"setup:smoke": "node scripts/setup-smoke.mjs",
"test": "pnpm run test:coverage && pnpm run test:browser && pnpm run test:platform",
"test:unit": "node --test tests/access-token.test.mjs tests/agent-config.test.mjs tests/agent-exclusions.test.mjs tests/agent-note-output.test.mjs tests/agent-review.test.mjs tests/agent-usage.test.mjs tests/automation-trust.test.mjs tests/cache.test.mjs tests/cli-args.test.mjs tests/cli-docs.test.mjs tests/coding-agents.test.mjs tests/data-contract.test.mjs tests/doctor.test.mjs tests/landing-demo.test.mjs tests/package-manifest.test.mjs tests/plan-ledger.test.mjs tests/presenter-runtime.test.mjs tests/product-gate.test.mjs tests/release-workflow.test.mjs tests/release.test.mjs tests/review-chat.test.mjs tests/summary-path.test.mjs tests/support-record.test.mjs tests/test-lanes.test.mjs tests/tool-profiles.test.mjs",
"test:integration": "pnpm run build && node --test --test-concurrency=1 tests/dev.test.mjs tests/generate-summaries.test.mjs tests/performance-gate.test.mjs tests/present-agent.test.mjs tests/present-help.test.mjs tests/present-instances.test.mjs tests/presenter-recovery.test.mjs tests/remote-targets.test.mjs tests/rendered-html.test.mjs tests/serve-built.test.mjs tests/setup-environments.test.mjs",
"test:coverage": "c8 pnpm run test:core",
"test:browser": "pnpm run build && node --test tests/browser/*.test.mjs",
"test:browser:install": "playwright install chromium",
"test:cloud": "node --test tests/generate-summaries.test.mjs tests/present-agent.test.mjs",
"test:platform": "node --test tests/platform-shell.test.mjs",
"test:run": "node --test tests/*.test.mjs",
"lint": "tsc --noEmit && eslint .",
"test:core": "pnpm run test:unit && pnpm run test:integration",
"benchmark:live-update": "node benchmarks/live-update-speed.mjs"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@playwright/test": "1.62.0",
"@tailwindcss/postcss": "4.2.1",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"blume": "^1.2.0",
"c8": "12.0.0",
"eslint": "10.8.0",
"fallow": "^3.10.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"vite": "8.1.5"
},
"type": "module",
"dependencies": {
"@pierre/diffs": "^1.2.12",
"ignore": "7.0.6"
}
}