This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.69 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "tiw",
"version": "0.0.2",
"description": "LLM-powered merge/pull request reviewer with adapter support for multiple platforms",
"keywords": [
"code-review",
"llm",
"gitlab",
"github",
"ai",
"anthropic",
"openai"
],
"license": "Apache-2.0",
"author": "Tiago <913367+quintela@users.noreply.github.com>",
"main": "dist/index.js",
"bin": {
"tiw": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --target=node22 --outdir=dist --sourcemap --external:./node_modules/* && tsc --emitDeclarationOnly",
"check-types": "tsc --noEmit",
"dev": "ts-node src/index.ts",
"fmt": "prettier --write",
"fmt:check": "prettier --check . '!**/*.{md,yml,html}'",
"fmt:fix": "prettier --write . '!**/*.{md,yml,html}'",
"knip": "knip --include files,dependencies",
"lint": "eslint . --ignore-pattern \"**/*.js\"",
"lint:fix": "eslint . --fix --ignore-pattern \"**/*.js\"",
"prepare": "husky",
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"tsc:check": "tsc --noEmit"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"sort-package-json",
"sort-package-json --check"
],
"src/**/*.ts": [
"echo hallo || yarn knip"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.18.0",
"axios": "^1.6.7",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"handlebars": "^4.7.8",
"html-entities": "^2.6.0",
"lodash": "^4.17.21",
"openai": "^4.29.1",
"simple-git": "^3.22.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.16",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"esbuild": "^0.25.2",
"esbuild-jest": "^0.5.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.5",
"husky": "^9.0.11",
"jest": "^29.7.0",
"knip": "^5.2.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sort-package-json": "^3.0.0",
"ts-jest": "^29.1.2",
"tsx": "^4.19.3",
"typescript": "5.4.2"
},
"engines": {
"node": ">=18.0.0"
},
"knip": {
"eslint": [
"eslint.config.ts"
],
"ignoreDependencies": [
"sort-package-json"
]
}
}