epiq 0.6.3 → 0.6.5

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.
Files changed (3) hide show
  1. package/dist/index.js +45 -45
  2. package/dist/mcp.js +45 -45
  3. package/package.json +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epiq",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "EPIQ - CLI based issue tracker",
@@ -32,20 +32,20 @@
32
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
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
34
  "build:sea": "node --build-sea sea-config.json",
35
- "build:publish": "pnpm build:npm",
36
- "build:binary": "pnpm build:sea:bundle && pnpm build:sea",
35
+ "build:publish": "npm run build:npm",
36
+ "build:binary": "npm run build:sea:bundle && npm run build:sea",
37
37
  "watch:npm": "node scripts/write-version.mjs && rm -rf ./dist && node 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",
41
41
  "test": "prettier --check \"**/*.{ts,tsx}\" && vitest run --coverage",
42
- "prepack": "pnpm build:publish",
42
+ "prepack": "npm run build:publish",
43
43
  "pack:check": "rm -f epiq-*.tgz && npm pack && FILE=$(ls -t epiq-*.tgz | head -n 1) && echo \"$FILE\" && tar -tf \"$FILE\"",
44
44
  "publish:dry": "rm -f epiq-*.tgz && npm pack && FILE=$(ls -t epiq-*.tgz | head -n 1) && npm publish --dry-run \"$FILE\"",
45
45
  "publish:tarball": "FILE=$(ls -t epiq-*.tgz | head -n 1) && echo \"Publishing $FILE\" && npm publish \"$FILE\"",
46
- "release": "pnpm pack:check && pnpm publish:tarball",
46
+ "release": "npm run pack:check && npm run publish:tarball",
47
47
  "start:mcp": "IS_LOCAL=true tsx source/mcp/server.ts",
48
- "inspect:mcp": "pnpm dlx @modelcontextprotocol/inspector",
48
+ "inspect:mcp": "npx @modelcontextprotocol/inspector",
49
49
  "lint": "eslint .",
50
50
  "lint:err": "eslint . --quiet"
51
51
  },
@@ -62,26 +62,26 @@
62
62
  "zod": "^4.3.6"
63
63
  },
64
64
  "devDependencies": {
65
- "@eslint/js": "^10.0.1",
65
+ "@eslint/js": "^9.39.1",
66
66
  "@sindresorhus/tsconfig": "^3.0.1",
67
67
  "@types/marked-terminal": "^6.1.1",
68
- "@types/node": "^25.5.0",
69
- "@types/react": "^18.0.32",
70
- "@typescript-eslint/eslint-plugin": "^8.59.2",
71
- "@typescript-eslint/parser": "^8.59.2",
68
+ "@types/node": "^22.15.0",
69
+ "@types/react": "^19.2.14",
70
+ "@typescript-eslint/eslint-plugin": "^8.46.0",
71
+ "@typescript-eslint/parser": "^8.46.0",
72
72
  "@vdemedes/prettier-config": "^2.0.1",
73
73
  "@vitest/coverage-v8": "4.1.2",
74
74
  "chalk": "^5.2.0",
75
75
  "esbuild": "^0.25.0",
76
- "eslint": "^10.3.0",
77
- "eslint-plugin-react": "^7.32.2",
78
- "eslint-plugin-react-hooks": "^4.6.0",
76
+ "eslint": "^9.39.1",
77
+ "eslint-plugin-react": "^7.37.5",
78
+ "eslint-plugin-react-hooks": "^7.0.1",
79
79
  "prettier": "^2.8.7",
80
80
  "ts-node": "^10.9.1",
81
81
  "tsx": "^4.20.3",
82
82
  "typescript": "^5.0.3",
83
- "typescript-eslint": "^8.59.2",
84
- "vitest": "^4.1.0"
83
+ "typescript-eslint": "^8.46.0",
84
+ "vitest": "4.1.2"
85
85
  },
86
86
  "prettier": "@vdemedes/prettier-config"
87
87
  }