-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "augment-review-pr",
"version": "0.2.0",
"description": "AI-powered code assistance for reviewing pull requests using Augment's intelligent development tools",
"main": "action.yml",
"type": "module",
"scripts": {
"test": "bun test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "prettier --write --cache --ignore-unknown",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"version:patch": "npm version patch && git push && git push --tags",
"version:minor": "npm version minor && git push && git push --tags",
"version:major": "npm version major && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/augmentcode/review-pr.git"
},
"keywords": [
"github-action",
"ai",
"code-review",
"pull-request",
"automation",
"augment",
"developer-tools",
"ci-cd"
],
"author": "Augment Code",
"license": "MIT",
"bugs": {
"url": "https://github.com/augmentcode/review-pr/issues"
},
"homepage": "https://github.com/augmentcode/review-pr#readme",
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
},
"files": [
"action.yml",
"README.md",
"LICENSE",
"templates/"
],
"dependencies": {},
"devDependencies": {
"prettier": "^3.6.2"
}
}