Files
archived-tauri-github-bot/package.json
2022-06-16 14:28:02 +02:00

33 lines
783 B
JSON

{
"name": "tauri-apps-bot",
"version": "1.0.0",
"private": true,
"description": "A bot for tauri-apps to automate various tasks.",
"license": "MIT OR Apache-2.0",
"homepage": "https://github.com/tauri-apps/tauri-apps-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"
},
"dependencies": {
"probot": "12.2.4"
},
"devDependencies": {
"@octokit/rest": "18.12.0",
"prettier": "2.7.1",
"tsup": "6.1.2",
"typescript": "4.7.3"
},
"engines": {
"node": ">=16.0.0"
}
}