-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.9 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.9 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
{
"name": "first-contribution",
"description": "Automatically respond to a user's first contribution to your repository, using GitHub Actions.",
"version": "4.2.0",
"author": "Paul Ebose",
"private": true,
"type": "module",
"homepage": "https://github.com/plbstl/first-contribution",
"repository": {
"type": "git",
"url": "git+https://github.com/plbstl/first-contribution.git"
},
"bugs": {
"url": "https://github.com/plbstl/first-contribution/issues"
},
"keywords": [
"actions",
"github-actions",
"contribution",
"first-time",
"message",
"contributor",
"comment",
"first-interaction",
"label"
],
"engines": {
"node": ">=24"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
},
"scripts": {
"test": "vitest --run",
"jscpd": "jscpd",
"format": "prettier --write .",
"typecheck": "tsc --build",
"lint": "eslint .",
"mdlint": "markdownlint . --ignore-path .gitignore",
"report": "./scripts/gen-reports",
"bundle": "rolldown --config",
"all": "pnpm format && pnpm typecheck && pnpm lint && pnpm mdlint && pnpm report && pnpm bundle"
},
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@jscpd/badge-reporter": "4.0.4",
"@octokit/webhooks-types": "7.6.1",
"@vitest/coverage-istanbul": "4.0.18",
"@vitest/eslint-plugin": "1.6.9",
"badge-maker": "5.0.2",
"eslint": "10.0.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"globals": "17.3.0",
"jscpd": "4.0.8",
"markdown-table": "3.0.4",
"markdownlint-cli": "0.47.0",
"prettier": "3.8.1",
"rolldown": "1.0.0-rc.4",
"typescript": "5.9.3",
"typescript-eslint": "8.55.0",
"vitest": "4.0.18"
},
"packageManager": "pnpm@10.29.3"
}