glassbox 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +224 -0
- package/dist/cli.js +3689 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "glassbox",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A local code review tool for AI-generated code. Review diffs, annotate lines, and export structured feedback that AI tools can act on.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "westphal",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/westphal/glassbox"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"code-review",
|
|
14
|
+
"ai",
|
|
15
|
+
"diff",
|
|
16
|
+
"annotations",
|
|
17
|
+
"cli",
|
|
18
|
+
"developer-tools",
|
|
19
|
+
"llm",
|
|
20
|
+
"claude",
|
|
21
|
+
"cursor",
|
|
22
|
+
"copilot"
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20"
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"glassbox": "./dist/cli.js"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "tsx --tsconfig tsconfig.json src/cli.ts",
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"clean": "rm -rf dist node_modules/.cache",
|
|
34
|
+
"release": "bash scripts/release.sh",
|
|
35
|
+
"prepublishOnly": "npm run build"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"!dist/*.map"
|
|
40
|
+
],
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@electric-sql/pglite": "^0.3.15",
|
|
43
|
+
"@hono/node-server": "^1.19.9",
|
|
44
|
+
"hono": "^4.12.2"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/node": "^22.0.0",
|
|
48
|
+
"esbuild": "^0.27.3",
|
|
49
|
+
"tsup": "^8.5.1",
|
|
50
|
+
"tsx": "^4.21.0",
|
|
51
|
+
"typescript": "^5.9.3"
|
|
52
|
+
}
|
|
53
|
+
}
|