epiq 0.6.5 → 0.6.7
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 -53
- package/dist/mcp.js +47 -47
- package/package.json +5 -5
- package/readme.md +2 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "EPIQ - CLI based issue tracker",
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsc --noEmit",
|
|
32
|
-
"build:npm": "node scripts/write-version.mjs && rm -rf ./dist && 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/server.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
|
|
33
|
-
"build:sea:bundle": "node scripts/write-version.mjs && rm -rf ./dist && esbuild source/Index.tsx --bundle --platform=node --format=cjs --target=node18 --minify --outfile=dist/sea.cjs",
|
|
34
|
-
"build:sea": "node --build-sea sea-config.json",
|
|
32
|
+
"build:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && 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/server.ts --bundle --packages=external --platform=node --format=esm --target=node18 --minify --outfile=dist/mcp.js --banner:js='#!/usr/bin/env node'",
|
|
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",
|
|
34
|
+
"build:sea": "node --build-sea source/config/sea-config.json",
|
|
35
35
|
"build:publish": "npm run build:npm",
|
|
36
36
|
"build:binary": "npm run build:sea:bundle && npm run build:sea",
|
|
37
|
-
"watch:npm": "node scripts/write-version.mjs && rm -rf ./dist && node scripts/watch-npm.mjs",
|
|
37
|
+
"watch:npm": "node source/scripts/write-version.mjs && rm -rf ./dist && node source/scripts/watch-npm.mjs",
|
|
38
38
|
"dev": "IS_LOCAL=true tsc --watch --noEmit",
|
|
39
39
|
"dev:start": "IS_LOCAL=true tsx source/Index.tsx",
|
|
40
40
|
"start": "IS_LOCAL=true tsx source/Index.tsx",
|
package/readme.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
> ⓘ First stable release scheduled for May 2026
|
|
2
|
-
|
|
3
1
|
# Epiq
|
|
4
2
|
|
|
5
3
|
_Distributed terminal-native issue tracker backed by Git._
|
|
@@ -24,8 +22,8 @@ With great attention to user ergonomics and developer experience, epiq makes pro
|
|
|
24
22
|
|
|
25
23
|
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.
|
|
26
24
|
|
|
27
|
-

|
|
28
|
-

|
|
25
|
+

|
|
26
|
+

|
|
29
27
|
|
|
30
28
|
## Features
|
|
31
29
|
|