-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 920 Bytes
/
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
{
"name": "tauri-github-bot",
"version": "1.0.0",
"private": true,
"description": "A GitHub bot for tauri-apps org to automate various tasks and intended to used only by tauri-apps org members.",
"license": "MIT OR Apache-2.0",
"homepage": "https://github.com/tauri-apps/tauri-github-bot",
"keywords": [
"probot",
"github",
"probot-app",
"tauri-apps"
],
"scripts": {
"build": "tsup src/index.ts --clean",
"start": "probot run ./dist/index.js",
"type-check": "tsc --noEmit",
"format": "prettier --write --end-of-line=auto \"./**/*.{js,ts,json}\" --ignore-path .gitignore",
"test": "vitest run"
},
"dependencies": {
"probot": "13.3.8"
},
"devDependencies": {
"@octokit/rest": "21.0.2",
"nock": "13.5.5",
"prettier": "3.3.3",
"tsup": "8.3.0",
"typescript": "5.6.2",
"vitest": "2.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}