-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "umm-actually",
"version": "0.4.4",
"description": "LLM PR review GitHub Action via OpenRouter — one consolidated review, inline findings",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"scripts": {
"build": "tsc",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"lint-staged": {
"*.{json,md}": "prettier --write",
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aliasunder/umm-actually.git"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"@openrouter/sdk": "1.2.107",
"env-var": "7.5.0",
"luxon": "3.7.2",
"parse-diff": "0.12.0",
"zod": "4.5.4"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/luxon": "3.7.5",
"@types/node": "26.4.1",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"husky": "9.1.7",
"jiti": "2.7.0",
"lint-staged": "17.5.0",
"prettier": "3.9.6",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0",
"vitest": "5.0.0"
}
}