-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.36 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.36 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
{
"name": "isobot",
"version": "0.0.1",
"description": "A probot application for executing user defined scripts.",
"repository": {
"type": "git",
"url": "git+https://github.com/cdaringe/isobot.git"
},
"bin": "./dist/bin.js",
"main": "dist/index.js",
"type": "module",
"files": [
"dist",
"!dist/**/__tests__"
],
"scripts": {
"dev": "dotenvx run -- tsx ./src/bin.ts",
"build": "wireit",
"test": "vitest run"
},
"wireit": {
"build": {
"command": "tsc"
}
},
"keywords": [
"github",
"bot",
"probot"
],
"author": "cdaringe",
"license": "ISC",
"devDependencies": {
"@dotenvx/dotenvx": "1.32.0",
"@vitest/coverage-istanbul": "2.1.8",
"msw": "^2.7.0",
"probot": "^13.4.1",
"semantic-release": "^20",
"sinon": "19.0.2",
"smee-client": "2.0.4",
"typescript": "5.7.2",
"vitest": "2.1.8",
"wireit": "0.14.9"
},
"dependencies": {
"@octokit/types": "^13.6.2",
"@octokit/webhooks": "12.3.1",
"esbuild": "^0.24.2",
"p-queue": "^8.0.1",
"primitivify": "^3.0.2",
"probot": "^13.4.1",
"rxjs": "^7.8.1",
"ts-results-es": "^4.2.0",
"tslib": "^2.8.1",
"tsx": "4.19.2",
"utility-types": "^3.11.0"
},
"pnpm": {
"overrides": {
"@octokit/webhooks": "12.3.1"
}
},
"release": {
"branches": [
"main"
]
}
}