epiq 0.6.17 → 0.6.19

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epiq",
3
- "version": "0.6.17",
3
+ "version": "0.6.19",
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
- "local-first",
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",
@@ -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
+ [![GitHub Sponsors](https://img.shields.io/badge/Sponsor-Epiq-pink?logo=github)](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.
@@ -144,7 +146,7 @@ To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a
144
146
 
145
147
  ```json
146
148
  "mcpServers": {
147
- ...
149
+
148
150
  "epiq": {
149
151
  "command": "npx",
150
152
  "args": [
@@ -154,7 +156,7 @@ To register Epiq with MCP-compatible clients (e.g. Claude Desktop), add it as a
154
156
  "epiq-mcp"
155
157
  ]
156
158
  }
157
- ...
159
+
158
160
  }
159
161
  ```
160
162