-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.03 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
{
"name": "webext-bot",
"version": "1.0.0",
"private": true,
"description": "An open-source Github Bot to report extension size change and extension version change on pull requests.",
"author": "Amit Singh <amitsingh5198@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/amitsingh-007/webext-bot",
"keywords": [
"probot",
"github",
"probot-app",
"webext-bot"
],
"scripts": {
"dist": "pnpm lint && pnpm clean && tsc -p tsconfig.dev.json",
"clean": "rimraf dist",
"lint": "eslint .",
"simulate:issues.opened": "pnpm dist && probot receive -e issues -p ./test/fixtures/issues.opened.json ./dist/src/app.js",
"simulate:pull_request.opened": "pnpm dist && probot receive -e pull_request -p ./test/fixtures/pull_request.opened.json ./dist/src/app.js",
"simulate:pull_request.synchronize": "pnpm dist && probot receive -e pull_request -p ./test/fixtures/pull_request.synchronize.json ./dist/src/app.js",
"simulate:workflow_run.completed": "pnpm dist && probot receive -e workflow_run -p ./test/fixtures/workflow_run.completed.json ./dist/src/app.js",
"start": "pnpm dist && probot run ./dist/src/app.js",
"vercel:build": "vercel build",
"vercel:preview": "vercel",
"vercel:env": "vercel env pull .env",
"vercel:link": "vercel link"
},
"dependencies": {
"bytes": "3.1.2",
"json2md": "2.0.1",
"minimatch": "10.0.1",
"normalize-path": "3.0.0",
"probot": "13.4.1",
"semver": "7.6.3",
"tslib": "2.8.1",
"yaml": "2.6.1",
"zod": "3.24.1"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@types/bytes": "3.1.5",
"@types/json2md": "1.5.4",
"@types/minimatch": "5.1.2",
"@types/normalize-path": "3.0.2",
"@types/semver": "7.5.8",
"eslint": "8.57.1",
"eslint-import-resolver-node": "0.3.9",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"rimraf": "6.0.1",
"smee-client": "2.0.4",
"typescript": "5.7.2",
"vercel": "39.2.2"
},
"engines": {
"node": ">= 18"
}
}