generated from probot/example-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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
{
"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 <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"bootstrap": "pnpm install --ignore-scripts --prefer-frozen-lockfile --prefer-offline --loglevel error",
"build": "tsup",
"check-format": "prettier --check .",
"fix": "pnpm run lint --fix",
"format": "prettier --write .",
"lint": "eslint --flag unstable_ts_config .",
"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.0"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.7.0",
"@bfra.me/prettier-config": "0.13.2",
"@semantic-release/git": "10.0.1",
"@swc/core": "1.9.3",
"@vitest/eslint-plugin": "1.1.12",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint-plugin-no-only-tests": "3.3.0",
"jiti": "2.4.0",
"nock": "13.5.6",
"prettier": "3.4.1",
"semantic-release": "24.2.0",
"tsup": "8.3.5",
"uvu": "0.5.6"
},
"packageManager": "[email protected]",
"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"
]
}
}