glassbox 0.1.2 → 0.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glassbox",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
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
5
  "type": "module",
6
6
  "license": "MIT",
@@ -31,6 +31,7 @@
31
31
  "dev": "npm run build:client && tsx --tsconfig tsconfig.json src/cli.ts",
32
32
  "build": "tsup",
33
33
  "build:client": "mkdir -p dist/client && npx esbuild src/client/app.ts --bundle --format=iife --outfile=dist/client/app.global.js --target=es2020 --jsx=automatic --jsx-import-source=#jsx --alias:#jsx/jsx-runtime=./src/jsx-runtime.ts && npx sass src/client/styles.scss dist/client/styles.css --style compressed --no-source-map",
34
+ "lint": "eslint src/",
34
35
  "clean": "rm -rf dist node_modules/.cache",
35
36
  "release": "bash scripts/release.sh",
36
37
  "prepublishOnly": "npm run build"
@@ -45,12 +46,18 @@
45
46
  "hono": "^4.12.2"
46
47
  },
47
48
  "devDependencies": {
49
+ "@eslint/js": "^9.39.3",
48
50
  "@types/node": "^22.0.0",
49
51
  "esbuild": "^0.27.3",
52
+ "eslint": "^9.39.3",
53
+ "eslint-plugin-import-x": "^4.16.1",
54
+ "eslint-plugin-simple-import-sort": "^12.1.1",
55
+ "eslint-plugin-tsdoc": "^0.5.2",
50
56
  "highlight.js": "^11.11.1",
51
57
  "sass": "^1.97.3",
52
58
  "tsup": "^8.5.1",
53
59
  "tsx": "^4.21.0",
54
- "typescript": "^5.9.3"
60
+ "typescript": "^5.9.3",
61
+ "typescript-eslint": "^8.56.1"
55
62
  }
56
63
  }