-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "suggest-changes",
"version": "3.0.4",
"description": "A GitHub Action for turning working directory changes into pull request review suggestions",
"license": "MIT",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts",
"test": "tsx --test test/*.test.ts",
"test:coverage": "tsx --test --experimental-test-coverage test/*.test.ts",
"test:watch": "tsx --test --watch test/*.test.ts",
"test:update-snapshots": "tsx --test --test-update-snapshots test/*.test.ts"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@octokit/action": "^8.0.4",
"parse-git-diff": "^0.0.19"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.6.1",
"@types/node": "^25.1.0",
"@vercel/ncc": "^0.38.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24.5.0"
},
"packageManager": "npm@11.6.0",
"prettier": {
"semi": false,
"singleQuote": true
},
"release": {
"branches": [
"main"
]
}
}