-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 822 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 822 Bytes
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
{
"name": "commit-range-action",
"version": "0.5.2",
"description": "GitHub Action for determining updated commit ranges",
"author": "Oleg Stobbe",
"license": "Apache-2.0",
"keywords": [
"actions"
],
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "ncc build ./src/index.ts -o ./dist --source-map --no-source-map-register",
"test": "vitest run -c vitest.config.ts",
"clean": "rm -rv ./dist/*",
"check": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "2.0.2",
"@actions/github": "7.0.0"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@types/node": "22.13.5",
"@vercel/ncc": "0.38.4",
"typescript": "5.9.3",
"vitest": "4.0.16"
}
}