galaxyrepowatch 1.0.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.
Files changed (2) hide show
  1. package/dist/cli.js +488 -0
  2. package/package.json +40 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "galaxyrepowatch",
3
+ "version": "1.0.0",
4
+ "description": "AI-powered Git pre-commit guard. Blocks bad code, detects secrets, runs Gemini AI review on every commit.",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "ai-guard": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "esbuild src/cli.ts --bundle --platform=node --target=node18 --outfile=dist/cli.js --minify",
14
+ "prepublishOnly": "npm run build"
15
+ },
16
+ "keywords": [
17
+ "git",
18
+ "pre-commit",
19
+ "husky",
20
+ "ai",
21
+ "gemini",
22
+ "code-review",
23
+ "security",
24
+ "linter",
25
+ "guard"
26
+ ],
27
+ "author": "galaxyweblinks",
28
+ "license": "UNLICENSED",
29
+ "dependencies": {
30
+ "@google/generative-ai": "^0.21.0",
31
+ "minimatch": "^10.2.5"
32
+ },
33
+ "devDependencies": {
34
+ "esbuild": "^0.20.2",
35
+ "typescript": "^5.4.5"
36
+ },
37
+ "engines": {
38
+ "node": ">=18.0.0"
39
+ }
40
+ }