-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
{
"name": "diff-hound",
"version": "1.2.0",
"description": "AI-powered code review bot for GitHub, GitLab, and Bitbucket",
"main": "./bin/index.js",
"bin": {
"diff-hound": "bin/diff-hound.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "vitest run --config vitest.config.mts",
"test:watch": "vitest --config vitest.config.mts",
"test:coverage": "vitest run --config vitest.config.mts --coverage",
"release": "changeset publish"
},
"publishConfig": {
"provenance": true
},
"keywords": [
"code-review",
"ai",
"github",
"gitlab",
"bitbucket",
"openai",
"claude",
"llm"
],
"author": "runtimebug",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runtimebug/diff-hound.git"
},
"dependencies": {
"@octokit/rest": "^21.1.1",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"js-yaml": "^4.1.0",
"openai": "^4.10.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.49.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^4.0.18"
}
}