generated from probot/example-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "github-app",
"version": "0.0.0-development",
"private": true,
"description": "GitHub App template repository",
"repository": "github:bfra-me/github-app",
"license": "MIT",
"author": "Marcus R. Brown <contact@marcusrbrown.com>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"bootstrap": "pnpm install --prefer-offline --loglevel warn",
"build": "pnpm check-types && NODE_ENV=production tsup",
"start": "pnpm build && probot run dist/index.js",
"fix": "eslint --fix",
"lint": "eslint",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"check-types": "tsc --noEmit"
},
"prettier": "@bfra.me/prettier-config/120-proof",
"dependencies": {
"@probot/adapter-github-actions": "5.0.1",
"probot": "14.3.1"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.50.1",
"@bfra.me/prettier-config": "0.16.7",
"@bfra.me/tsconfig": "0.12.2",
"@octokit/webhooks": "14.2.0",
"@octokit/webhooks-types": "7.6.1",
"@semantic-release/git": "10.0.1",
"@types/node": "24.12.0",
"@vitest/eslint-plugin": "1.6.13",
"conventional-changelog-conventionalcommits": "9.3.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.5.5",
"jiti": "2.6.1",
"nock": "14.0.11",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "^16.20.0 || >=18"
}
}