-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "repissue",
"version": "0.1.1",
"description": "Pack GitHub Issues & PRs into a single AI-ready context file",
"type": "module",
"bin": {
"repissue": "bin/repissue.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsc --project tsconfig.build.json --watch",
"start": "node bin/repissue.js",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"keywords": [
"github",
"issues",
"pull-requests",
"ai",
"llm",
"context",
"repomix",
"cli",
"agent",
"codegen"
],
"author": "repissue contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/simohypers/repissue.git"
},
"homepage": "https://github.com/simohypers/repissue#readme",
"bugs": {
"url": "https://github.com/simohypers/repissue/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^14.0.3",
"handlebars": "^4.7.9",
"picocolors": "^1.1.1",
"picospinner": "^3.0.0",
"tiktoken": "^1.0.22",
"tinypool": "^2.1.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^8.57.1",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}