-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.1 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
{
"name": "diffwalk",
"version": "0.2.1",
"description": "Turn AI-generated Git changes into ordered browser walkthroughs with explanations attached to exact diffs",
"license": "MIT",
"homepage": "https://diffwalk.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/minipai/diffwalk.git"
},
"bugs": {
"url": "https://github.com/minipai/diffwalk/issues"
},
"keywords": [
"ai-code-review",
"coding-agents",
"code-review",
"code-walkthrough",
"developer-tools",
"diff",
"git",
"cli"
],
"type": "module",
"bin": {
"diffwalk": "dist/diffwalk.js"
},
"files": [
"dist",
"skills/diffwalk",
"README.md",
"LICENSE"
],
"scripts": {
"release": "node scripts/release.mjs",
"release:publish": "node scripts/release.mjs --publish",
"build": "bun build ./src/cli.ts --target=node --packages=external --outfile=dist/diffwalk.js && bun build ./src/report/client.ts --target=browser --format=iife --minify --outfile=dist/report-client.js",
"build:worker": "bun run ./worker/build-assets.ts",
"deploy": "pnpm build:worker && wrangler deploy",
"diffwalk": "bun run ./src/cli.ts",
"typecheck": "tsc --noEmit && tsc --noEmit -p worker",
"test": "bun test",
"pretest": "pnpm build",
"test:visual": "playwright test",
"test:visual:update": "playwright test --update-snapshots",
"check": "pnpm typecheck && pnpm test && pnpm test:visual",
"prepack": "pnpm build",
"dev:report": "bun --watch scripts/dev-report.ts"
},
"dependencies": {
"@pierre/diffs": "1.3.5",
"commander": "^14.0.2",
"diff": "9.0.0",
"marked": "18.0.11",
"react": "19.2.8",
"yaml": "^2.9.0",
"zod": "4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260828.1",
"@playwright/test": "1.55.0",
"@types/bun": "1.4.0",
"@types/react": "19.2.18",
"happy-dom": "20.11.12",
"typescript": "7.0.2",
"wrangler": "^4.127.1"
},
"engines": {
"node": "^22.0.0 || ^24.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.20.0"
}