-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.17 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
{
"name": "galley-diff",
"version": "0.7.4",
"description": "An integrated review environment (IRE) for code you didn't write by hand — review a git diff in the browser, then hand a structured review back to your coding agent.",
"keywords": [
"git",
"diff",
"code-review",
"review",
"coding-agent",
"ai",
"cli"
],
"homepage": "https://github.com/ymansurozer/galley#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ymansurozer/galley.git"
},
"bugs": {
"url": "https://github.com/ymansurozer/galley/issues"
},
"author": "Yusuf Mansur Özer",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22"
},
"bin": {
"galley": "./dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "node scripts/build-ui.mjs --watch & tsx src/cli.ts",
"build": "tsc && tsc -p tsconfig.ui.json && node scripts/build-ui.mjs && cp src/ui/index.html dist/index.html",
"start": "node dist/cli.js",
"check": "tsc --noEmit && tsc -p tsconfig.ui.json",
"lint": "oxlint src scripts && oxfmt --check src scripts",
"lint:fix": "oxlint src scripts --fix && oxfmt src scripts",
"test": "node --import tsx --test \"src/**/*.test.ts\"",
"smoke": "node scripts/smoke.mjs",
"perf-smoke": "node scripts/perf-smoke.mjs",
"prepack": "pnpm build",
"release": "pnpm lint && pnpm check && pnpm test && pnpm build && pnpm smoke && changelogen --release --push"
},
"devDependencies": {
"@types/alpinejs": "^3.13.11",
"@types/alpinejs__persist": "^3.13.4",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "latest",
"changelogen": "^0.6.2",
"esbuild": "^0.28.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"tsx": "latest",
"typescript": "latest"
},
"dependencies": {
"@pierre/diffs": "1.2.4",
"@shikijs/markdown-it": "^4.2.0",
"alpinejs": "^3.15.12",
"dompurify": "^3.4.8",
"markdown-it": "^14.2.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"shiki": "^4.2.0"
}
}