Files
archived-tauri-github-bot/package.json
renovate[bot] 96940a00ce chore(deps): update dependency prettier to v2.8.6 (#174)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-03-21 13:26:22 +02:00

36 lines
921 B
JSON

{
"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": "12.3.0"
},
"devDependencies": {
"@octokit/rest": "19.0.7",
"nock": "13.3.0",
"prettier": "2.8.6",
"tsup": "6.7.0",
"typescript": "4.9.5",
"vitest": "0.29.7"
},
"engines": {
"node": ">=16.0.0"
}
}