generated from probot/example-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 KB
/
package.json
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
{
"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 error",
"build": "tsup",
"check-format": "prettier --check .",
"fix": "pnpm run lint --fix",
"format": "prettier --write .",
"lint": "eslint .",
"test": "node test/app.test.js || true"
},
"prettier": "@bfra.me/prettier-config/120-proof",
"dependencies": {
"@probot/adapter-github-actions": "4.0.0",
"probot": "13.4.1"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.16.4",
"@bfra.me/prettier-config": "0.15.1",
"@semantic-release/git": "10.0.1",
"@swc/core": "1.10.9",
"@vitest/eslint-plugin": "1.1.25",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.2.3",
"jiti": "2.4.2",
"nock": "13.5.6",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"tsup": "8.3.6",
"uvu": "0.5.6"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": "^16.20.0 || >=18"
},
"tsup": {
"banner": {
"js": "import {createRequire} from 'node:module';const require=createRequire(import.meta.url);"
},
"clean": true,
"entry": [
"index.js"
],
"format": "esm",
"noExternal": [
"@probot/adapter-github-actions",
"probot"
]
}
}