-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.09 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": "review-loop",
"version": "0.9.0",
"description": "Bridge between human reviewers and coding agents — annotate rendered pages in-browser and export location-aware feedback. Works with Astro, Vite, and Express.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": "./dist/client.js",
"./mcp": "./dist/mcp/server.js",
"./vite": {
"types": "./dist/integrations/vite.d.ts",
"import": "./dist/integrations/vite.js"
},
"./express": {
"types": "./dist/integrations/express.d.ts",
"import": "./dist/integrations/express.js"
}
},
"bin": {
"review-loop-mcp": "dist/mcp/server.js"
},
"files": [
"dist"
],
"keywords": [
"astro-integration",
"vite-plugin",
"express-middleware",
"annotation",
"review",
"developer-tools",
"copy-review",
"ai-agents",
"code-review"
],
"author": "Matthew Vivian",
"license": "MIT",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viv/review-loop.git"
},
"homepage": "https://github.com/viv/review-loop#readme",
"bugs": {
"url": "https://github.com/viv/review-loop/issues"
},
"scripts": {
"prepublishOnly": "npm run build && npm test",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"astro": "^5.0.0",
"vite": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"astro": {
"optional": true
},
"vite": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "^4.0.18",
"astro": "^5.3.0",
"eslint": "^10.0.2",
"happy-dom": "^20.6.3",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^4.3.6"
}
}