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.
- package/dist/index.js +45 -45
- package/dist/mcp.js +45 -45
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.6.
|
|
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": "
|
|
36
|
-
"build:binary": "
|
|
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": "
|
|
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": "
|
|
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": "
|
|
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": "^
|
|
65
|
+
"@eslint/js": "^9.39.1",
|
|
66
66
|
"@sindresorhus/tsconfig": "^3.0.1",
|
|
67
67
|
"@types/marked-terminal": "^6.1.1",
|
|
68
|
-
"@types/node": "^
|
|
69
|
-
"@types/react": "^
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
71
|
-
"@typescript-eslint/parser": "^8.
|
|
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": "^
|
|
77
|
-
"eslint-plugin-react": "^7.
|
|
78
|
-
"eslint-plugin-react-hooks": "^
|
|
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.
|
|
84
|
-
"vitest": "
|
|
83
|
+
"typescript-eslint": "^8.46.0",
|
|
84
|
+
"vitest": "4.1.2"
|
|
85
85
|
},
|
|
86
86
|
"prettier": "@vdemedes/prettier-config"
|
|
87
87
|
}
|