-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
76
77
{
"name": "@mshick/add-pr-comment",
"version": "3.10.0",
"description": "A GitHub Action which adds a comment to a pull request issue or commit.",
"keywords": [
"GitHub Actions",
"javascript",
"pull request",
"comments",
"pr"
],
"homepage": "https://github.com/mshick/add-pr-comment#readme",
"bugs": {
"url": "https://github.com/mshick/add-pr-comment/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mshick/add-pr-comment.git"
},
"license": "MIT",
"type": "module",
"author": "Michael Shick <m@shick.us>",
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"scripts": {
"build": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build:lib": "npx rimraf ./lib && tsc --project tsconfig.lib.json",
"clean": "rm -rf node_modules dist lib coverage package-lock.json",
"check": "tsc --noEmit",
"format": "biome check --write .",
"lint": "biome check .",
"prepack": "npm run build:lib",
"test": "vitest run --coverage",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"watch": "vitest"
},
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/glob": "^0.6.1",
"@actions/http-client": "^4.0.0",
"remend": "^1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@octokit/types": "^16.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"make-coverage-badge": "^1.2.0",
"msw": "^2.12.10",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"engines": {
"node": ">=24.0.0"
}
}