-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
{
"name": "artifact2pr",
"version": "1.1.1",
"description": "A GitHub Action to automatically post links to build artifacts as a comment on pull requests.",
"repository": {
"type": "git",
"url": "git+https://github.com/RubberDuckCrew/artifact2pr.git"
},
"bugs": {
"url": "https://github.com/RubberDuckCrew/artifact2pr/issues"
},
"homepage": "https://github.com/RubberDuckCrew/artifact2pr#readme",
"keywords": [],
"author": "RubberDuckCrew",
"license": "MIT",
"engines": {
"node": ">=24.0.0 <=24"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npx ncc build src/index.ts -o dist --license licenses.txt",
"test": "vitest run",
"lint": "prettier . --check && eslint .",
"fix": "prettier . --write && eslint . --fix"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"@octokit/rest": "22.0.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "24.12.4",
"@vercel/ncc": "0.38.4",
"@vitest/coverage-v8": "4.1.7",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vitest": "4.1.7"
}
}