This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"name": "suggestion-bot",
"version": "0.0.1-dev",
"description": "suggestion-bot submits code reviews with suggestions based on your diffs",
"keywords": [
"code review",
"diff",
"github",
"pull request",
"review",
"suggestion"
],
"homepage": "https://github.com/tido64/suggestion-bot#readme",
"license": "MIT",
"author": {
"name": "Tommy Nguyen",
"email": "4123478+tido64@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tido64/suggestion-bot.git"
},
"bin": "cli.js",
"files": [
"cli.js",
"src/**/*.d.ts",
"src/**/*.js"
],
"type": "module",
"main": "src/index.js",
"exports": {
".": {
"default": "./src/index.js"
},
"./cli.js": {
"default": "./cli.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "yarn clean && yarn lint && tsc",
"clean": "git clean -dfqx -- src/ test/",
"format": "oxfmt $(git ls-files '*.js' '*.json' '*.md' '*.ts' '*.yml' ':!:.yarn/**/*.cjs')",
"lint": "oxlint $(git ls-files '*.js' ':!:*.config.js' ':!:.yarn/**/*.js')",
"suggest": "suggestion-bot",
"test": "node --test --experimental-test-coverage $(git ls-files 'test/*.test.js')"
},
"dependencies": {
"@octokit/core": "^7.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"azure-devops-node-api": "^15.0.0",
"parse-diff": "^0.11.0"
},
"devDependencies": {
"@rnx-kit/oxlint-config": "^1.0.2",
"@rnx-kit/tsconfig": "^3.0.0",
"@types/node": "^24.0.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.51.0",
"semantic-release": "^25.0.0",
"typescript": "^5.0.0"
},
"resolutions": {
"@microsoft/eslint-plugin-sdl/eslint-plugin-n": "^17.10.3",
"@microsoft/eslint-plugin-sdl/eslint-plugin-react": "^7.37.3",
"@semantic-release/npm/npm": "link:."
},
"release": {
"extends": "./.github/semantic-release.json"
},
"engines": {
"node": ">=20.9"
},
"packageManager": "yarn@4.12.0"
}