git-viewer 3.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.
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "git-viewer",
3
+ "version": "3.0.0",
4
+ "description": "Visual git log viewer with branch graph and diff display",
5
+ "author": "Ryan Florence",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "bin": {
9
+ "git-viewer": "./dist/server.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "devDependencies": {
15
+ "remix": "3.0.0-alpha.1",
16
+ "@types/node": "^25.0.10",
17
+ "concurrently": "^9.2.1",
18
+ "diff2html": "^3.4.55",
19
+ "esbuild": "^0.25.11"
20
+ },
21
+ "scripts": {
22
+ "start": "concurrently \"pnpm dev\" \"node --experimental-strip-types server.ts\"",
23
+ "build": "node build.js",
24
+ "dev": "esbuild entry.tsx --bundle --outfile=entry.bundled.js --format=esm --platform=browser --target=es2020 --sourcemap=inline --watch",
25
+ "release": "npm version major && pnpm build && npm publish"
26
+ }
27
+ }