UNPKG

buddy-bot

Version:

Automated & optimized dependency updates for JavaScript & TypeScript projects. Like Renovate & Dependabot.

85 lines (84 loc) 2.2 kB
{ "name": "buddy-bot", "type": "module", "version": "0.9.12", "description": "Automated & optimized dependency updates for JavaScript & TypeScript projects. Like Renovate & Dependabot.", "author": "Chris Breuer <chris@stacksjs.org>", "license": "MIT", "homepage": "https://github.com/stacksjs/buddy-bot", "repository": { "type": "git", "url": "git+https://github.com/stacksjs/buddy-bot.git" }, "bugs": { "url": "https://github.com/stacksjs/buddy-bot/issues" }, "keywords": [ "buddy-bot", "dependency-updates", "dependency-management", "dependency-updater", "dependency-manager", "renovate", "dependabot", "bot", "bun", "typescript", "javascript" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/src/index.js" } }, "module": "./dist/src/index.js", "types": "./dist/index.d.ts", "bin": { "buddy-bot": "./dist/bin/cli.js" }, "files": [ "README.md", "bin", "dist" ], "scripts": { "build": "bun build.ts", "fresh": "bunx rimraf node_modules/ bun.lock && bun i", "prepublishOnly": "bun run build", "test": "bun test", "lint": "bunx --bun eslint .", "lint:fix": "bunx --bun eslint . --fix", "changelog": "bunx logsmith --verbose", "changelog:generate": "bunx logsmith --output CHANGELOG.md", "release": "bunx --bun bumpx -r", "typecheck": "bunx tsc --noEmit", "dev:docs": "bun --bun vitepress dev docs", "build:docs": "bun --bun vitepress build docs", "preview:docs": "bun --bun vitepress preview docs" }, "dependencies": { "bunfig": "^0.15.6", "prompts": "^2.4.2", "ts-pkgx": "^0.4.134" }, "devDependencies": { "@stacksjs/clapp": "^0.2.0", "@stacksjs/docs": "^0.70.23", "@stacksjs/eslint-config": "^4.14.0-beta.3", "@types/bun": "^1.3.2", "@types/prompts": "^2.4.9", "bun-plugin-dtsx": "^0.9.9" }, "overrides": { "unconfig": "0.3.10" }, "git-hooks": { "pre-commit": { "staged-lint": { "*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix" } }, "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG" } }