-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.06 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
{
"name": "human-review",
"version": "0.8.1",
"description": "Review and edit agent-generated files and localhost pages in the browser, then send the whole batch back to your agent.",
"author": "Peter Yang",
"homepage": "https://github.com/petergyang/human-review#readme",
"repository": {
"type": "git",
"url": "https://github.com/petergyang/human-review.git"
},
"bugs": {
"url": "https://github.com/petergyang/human-review/issues"
},
"type": "module",
"bin": {
"human-review": "src/cli.js"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test --test-force-exit --test-timeout=60000",
"start": "node src/cli.js"
},
"keywords": [
"html",
"markdown",
"localhost",
"nextjs",
"review",
"comments",
"agent",
"claude-code",
"codex",
"cli"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"jsdom": "^29.1.1"
},
"dependencies": {
"marked": "^18.0.7"
}
}