epiq 0.6.19 → 0.7.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/dist/gui/favicon.ico +0 -0
- package/dist/gui/index.html +24 -0
- package/dist/gui/main.js +26687 -0
- package/dist/index.js +56 -53
- package/dist/mcp.js +47 -52
- package/package.json +11 -3
- package/readme.md +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "EPIQ - CLI based issue tracker",
|
|
@@ -27,7 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc --noEmit",
|
|
30
|
-
"build:
|
|
30
|
+
"build:gui:types": "tsc --noEmit -p source/gui/client/tsconfig.json",
|
|
31
|
+
"build:gui": "npm run build:gui:types && mkdir -p dist/gui && cp source/gui/index.html dist/gui/index.html && cp source/gui/favicon.ico dist/gui/favicon.ico && esbuild source/gui/client/main.tsx --bundle --format=esm --target=es2020 --outfile=dist/gui/main.js",
|
|
32
|
+
"build:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && npm run build:gui && esbuild source/Index.tsx --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/index.js --banner:js='#!/usr/bin/env node' && esbuild source/mcp/index.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
|
|
31
33
|
"build:sea:bundle": "node source/scripts/write-version.mjs && rm -rf ./dist && esbuild source/Index.tsx --bundle --platform=node --format=cjs --target=node18 --minify --outfile=dist/sea.cjs",
|
|
32
34
|
"build:sea": "node --build-sea source/config/sea-config.json",
|
|
33
35
|
"build:publish": "npm run build:npm",
|
|
@@ -36,8 +38,9 @@
|
|
|
36
38
|
"dev": "IS_LOCAL=true tsc --watch --noEmit",
|
|
37
39
|
"dev:start": "IS_LOCAL=true tsx source/Index.tsx",
|
|
38
40
|
"start": "IS_LOCAL=true tsx source/Index.tsx",
|
|
41
|
+
"start:gui": "IS_LOCAL=true tsx source/Index.tsx gui",
|
|
39
42
|
"test": "prettier --check \"**/*.{ts,tsx}\" && vitest run --coverage --exclude \"source/test/e2e/**\"",
|
|
40
|
-
"test:e2e:ci": "npm run build:npm && vitest run source/test/e2e",
|
|
43
|
+
"test:e2e:ci": "export IS_CI=true && npm run build:npm && vitest run source/test/e2e",
|
|
41
44
|
"test:e2e": "docker run --rm -v \"$PWD\":/app -v /app/node_modules -w /app epiq-e2e npm run test:e2e:ci",
|
|
42
45
|
"build:e2e:image": "docker build -f source/test/e2e/Dockerfile -t epiq-e2e .",
|
|
43
46
|
"prepack": "npm run build:publish",
|
|
@@ -60,8 +63,11 @@
|
|
|
60
63
|
"ink": "^6.8.0",
|
|
61
64
|
"meow": "^14.1.0",
|
|
62
65
|
"react": "^19.2.4",
|
|
66
|
+
"react-dom": "^19.2.6",
|
|
67
|
+
"react-router-dom": "^7.17.0",
|
|
63
68
|
"string-width": "^8.2.0",
|
|
64
69
|
"ulid": "^3.0.2",
|
|
70
|
+
"ws": "^8.21.0",
|
|
65
71
|
"zod": "^4.3.6"
|
|
66
72
|
},
|
|
67
73
|
"devDependencies": {
|
|
@@ -70,6 +76,8 @@
|
|
|
70
76
|
"@types/marked-terminal": "^6.1.1",
|
|
71
77
|
"@types/node": "^22.19.19",
|
|
72
78
|
"@types/react": "^19.2.14",
|
|
79
|
+
"@types/react-dom": "^19.2.3",
|
|
80
|
+
"@types/ws": "^8.18.1",
|
|
73
81
|
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
74
82
|
"@typescript-eslint/parser": "^8.46.0",
|
|
75
83
|
"@vdemedes/prettier-config": "^2.0.1",
|
package/readme.md
CHANGED
|
@@ -16,6 +16,8 @@ With great attention to user ergonomics and developer experience, epiq makes pro
|
|
|
16
16
|
|
|
17
17
|
Epiq is a vim-inspired issue tracker that brings project management into the terminal. It renders directly in ASCII and persists state as an immutable distributed event log, versioned and synchronized through Git.
|
|
18
18
|
|
|
19
|
+
An optional browser GUI is available, powered by the same Git-backed state engine.
|
|
20
|
+
|
|
19
21
|

|
|
20
22
|

|
|
21
23
|
|
|
@@ -30,6 +32,7 @@ Epiq is a vim-inspired issue tracker that brings project management into the ter
|
|
|
30
32
|
- Multi-user — collaborative synchronization via Git
|
|
31
33
|
- Traceable event log — state is a full history of every change ever made
|
|
32
34
|
- MCP integration - Model Context Protocol support for agent interaction
|
|
35
|
+
- Browser GUI — optional graphical interface powered by the same Git-backed state
|
|
33
36
|
|
|
34
37
|
## Why epiq?
|
|
35
38
|
|
|
@@ -79,6 +82,12 @@ Git init
|
|
|
79
82
|
epiq
|
|
80
83
|
```
|
|
81
84
|
|
|
85
|
+
If you prefer a graphical interface:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
epiq --gui
|
|
89
|
+
```
|
|
90
|
+
|
|
82
91
|
If it is your first run, this opens the interactive setup wizard that sets you up in about 30 seconds.
|
|
83
92
|
|
|
84
93
|
That’s it!
|
|
@@ -211,4 +220,4 @@ Epiq follows a **local-first** model:
|
|
|
211
220
|
|
|
212
221
|
---
|
|
213
222
|
|
|
214
|
-
🫡
|
|
223
|
+
🫡 Project management for people who live in the terminal.
|