epiq 0.6.16 → 0.6.18
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/index.js +48 -48
- package/dist/mcp.js +42 -42
- package/package.json +12 -7
- package/readme.md +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "EPIQ - CLI based issue tracker",
|
|
@@ -16,9 +16,7 @@
|
|
|
16
16
|
"commandline",
|
|
17
17
|
"offline-first",
|
|
18
18
|
"git-based",
|
|
19
|
-
"
|
|
20
|
-
"developer-tools",
|
|
21
|
-
"vim-inspired"
|
|
19
|
+
"developer-tools"
|
|
22
20
|
],
|
|
23
21
|
"bin": {
|
|
24
22
|
"epiq": "dist/index.js",
|
|
@@ -38,7 +36,10 @@
|
|
|
38
36
|
"dev": "IS_LOCAL=true tsc --watch --noEmit",
|
|
39
37
|
"dev:start": "IS_LOCAL=true tsx source/Index.tsx",
|
|
40
38
|
"start": "IS_LOCAL=true tsx source/Index.tsx",
|
|
41
|
-
"test": "prettier --check \"**/*.{ts,tsx}\" && vitest run --coverage",
|
|
39
|
+
"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",
|
|
41
|
+
"test:e2e": "docker run --rm -v \"$PWD\":/app -v /app/node_modules -w /app epiq-e2e npm run test:e2e:ci",
|
|
42
|
+
"build:e2e:image": "docker build -f source/test/e2e/Dockerfile -t epiq-e2e .",
|
|
42
43
|
"prepack": "npm run build:publish",
|
|
43
44
|
"pack:check": "rm -f epiq-*.tgz && npm pack && FILE=$(ls -t epiq-*.tgz | head -n 1) && echo \"$FILE\" && tar -tf \"$FILE\"",
|
|
44
45
|
"publish:dry": "rm -f epiq-*.tgz && npm pack && FILE=$(ls -t epiq-*.tgz | head -n 1) && npm publish --dry-run \"$FILE\"",
|
|
@@ -47,13 +48,15 @@
|
|
|
47
48
|
"start:mcp": "IS_LOCAL=true tsx source/mcp/server.ts",
|
|
48
49
|
"inspect:mcp": "npx @modelcontextprotocol/inspector",
|
|
49
50
|
"lint": "eslint .",
|
|
50
|
-
"lint:err": "eslint . --quiet"
|
|
51
|
+
"lint:err": "eslint . --quiet",
|
|
52
|
+
"prepare": "husky"
|
|
51
53
|
},
|
|
52
54
|
"files": [
|
|
53
55
|
"dist"
|
|
54
56
|
],
|
|
55
57
|
"dependencies": {
|
|
56
58
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
59
|
+
"@xterm/headless": "^6.0.0",
|
|
57
60
|
"ink": "^6.8.0",
|
|
58
61
|
"meow": "^14.1.0",
|
|
59
62
|
"react": "^19.2.4",
|
|
@@ -65,7 +68,7 @@
|
|
|
65
68
|
"@eslint/js": "^9.39.1",
|
|
66
69
|
"@sindresorhus/tsconfig": "^3.0.1",
|
|
67
70
|
"@types/marked-terminal": "^6.1.1",
|
|
68
|
-
"@types/node": "^22.
|
|
71
|
+
"@types/node": "^22.19.19",
|
|
69
72
|
"@types/react": "^19.2.14",
|
|
70
73
|
"@typescript-eslint/eslint-plugin": "^8.46.0",
|
|
71
74
|
"@typescript-eslint/parser": "^8.46.0",
|
|
@@ -76,6 +79,8 @@
|
|
|
76
79
|
"eslint": "^9.39.1",
|
|
77
80
|
"eslint-plugin-react": "^7.37.5",
|
|
78
81
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
82
|
+
"husky": "^9.1.7",
|
|
83
|
+
"node-pty": "^1.1.0",
|
|
79
84
|
"prettier": "^2.8.7",
|
|
80
85
|
"ts-node": "^10.9.1",
|
|
81
86
|
"tsx": "^4.20.3",
|
package/readme.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
_Distributed terminal-native issue tracker backed by Git._
|
|
4
4
|
|
|
5
|
+
[](https://github.com/sponsors/ljtn)
|
|
6
|
+
|
|
5
7
|
Issue tracking is a core part of software development, but it often becomes a painful context-switching exercise with poor ergonomics. Epiq provides issue tracking as a portable, integrated part of the development environment, with access to all the powerful tooling developers are used to.
|
|
6
8
|
|
|
7
9
|
> You can manage all your projects directly via the command line in a visual kanban board and edit content in your favorite editor.
|
|
@@ -82,7 +84,6 @@ If it is your first run, this opens the interactive setup wizard that sets you u
|
|
|
82
84
|
That’s it!
|
|
83
85
|
|
|
84
86
|
> Setup wizard creates:
|
|
85
|
-
>
|
|
86
87
|
> User config persisted in `~/.epiq-global/config.json`.
|
|
87
88
|
|
|
88
89
|
> Initialization creates:
|
|
@@ -145,7 +146,7 @@ To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a
|
|
|
145
146
|
|
|
146
147
|
```json
|
|
147
148
|
"mcpServers": {
|
|
148
|
-
|
|
149
|
+
|
|
149
150
|
"epiq": {
|
|
150
151
|
"command": "npx",
|
|
151
152
|
"args": [
|
|
@@ -155,7 +156,7 @@ To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a
|
|
|
155
156
|
"epiq-mcp"
|
|
156
157
|
]
|
|
157
158
|
}
|
|
158
|
-
|
|
159
|
+
|
|
159
160
|
}
|
|
160
161
|
```
|
|
161
162
|
|