-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"name": "@mattstack/gitq",
"version": "0.2.1",
"type": "module",
"bin": {
"gitq": "bin/gitq.mjs"
},
"scripts": {
"test": "bun run test:unit && bun run test:integration",
"test:unit": "bun test tests/*.test.ts",
"test:integration": "bun test --timeout 30000 tests/integration/",
"check-types": "tsc --noEmit",
"serve": "bun run src/server/server.ts",
"build": "bun build src/cli/main.ts --outfile dist/gitq.js --target node --format esm --packages external",
"build:client": "bun run scripts/build-client.ts",
"build:binary": "bun run build:client && bun build --compile src/compiled.ts --outfile dist/gitq",
"prepublishOnly": "bun run check-types && bun run build",
"release": "bun run scripts/release.ts"
},
"dependencies": {
"@mattstack/glance": "^0.19.0",
"@mattstack/rt-client": "^0.4.0",
"picomatch": "^4.0.2"
},
"devDependencies": {
"@types/picomatch": "^3.0.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"bun-types": "^1.3.11",
"typescript": "^5.9.3",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"description": "Stacked-branch engine for git, built to be driven by an agent: documented exit codes, --json on every command, preflight checks, and absorb",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/m4ttstack/gitq.git"
},
"homepage": "https://github.com/m4ttstack/gitq#readme",
"bugs": {
"url": "https://github.com/m4ttstack/gitq/issues"
},
"keywords": [
"git",
"stacked-branches",
"stacked-diffs",
"cli",
"agent",
"gitlab",
"github",
"merge-request",
"pull-request"
],
"engines": {
"node": ">=20"
},
"files": [
"dist",
"bin/gitq.mjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}