-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.98 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.98 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
{
"name": "gitlocal",
"version": "0.5.4",
"description": "Browse any local git repository in your browser",
"keywords": [
"git",
"repository",
"viewer",
"local",
"git viewer",
"repository browser",
"local git repository viewer",
"github-like",
"code viewer",
"markdown viewer",
"browser-based git ui",
"gitlocal"
],
"type": "module",
"bin": {
"gitlocal": "./dist/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist",
"ui/dist"
],
"scripts": {
"build:ui": "npm --prefix ui run build",
"build:server": "tsc --noEmit && esbuild src/cli.ts --bundle --platform=node --format=esm --outfile=dist/cli.js --banner:js='#!/usr/bin/env node'",
"build": "npm run build:ui && npm run build:server && chmod +x dist/cli.js",
"dev:ui": "npm --prefix ui run dev",
"dev:server": "node --watch --experimental-strip-types src/cli.ts .",
"test:server": "vitest run --coverage",
"test:ui": "npm --prefix ui run test:ci",
"test": "npm run test:server && npm run test:ui",
"lint": "tsc --noEmit",
"audit": "npm audit --audit-level=moderate",
"audit:ui": "npm --prefix ui audit --audit-level=moderate",
"verify": "npm test && npm run build && npm run audit && npm run audit:ui",
"prepublishOnly": "npm run verify"
},
"dependencies": {
"@hono/node-server": "^1.19.13",
"hono": "^4.12.12",
"open": "^10.1.0"
},
"devDependencies": {
"@emnapi/core": "^1.9.1",
"@emnapi/runtime": "^1.9.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.3",
"esbuild": "^0.27.4",
"typescript": "^5.8.3",
"vitest": "^4.1.3"
},
"overrides": {
"postcss": "^8.5.10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ehud-am/gitlocal"
},
"homepage": "https://github.com/ehud-am/gitlocal#readme",
"bugs": {
"url": "https://github.com/ehud-am/gitlocal/issues"
},
"publishConfig": {
"access": "public"
}
}