buddy-bot
Version:
The Stacks CLI.
77 lines (76 loc) • 1.88 kB
JSON
{
"name": "buddy-bot",
"type": "module",
"version": "0.7.7",
"description": "The Stacks CLI.",
"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",
"stacks",
"bun",
"typescript",
"javascript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"buddy-bot": "./dist/bin/cli.js"
},
"files": [
"README.md",
"bin",
"dist"
],
"scripts": {
"build": "bun build.ts",
"lint": "bunx --bun eslint .",
"lint:fix": "bunx --bun eslint . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"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": {
"@types/prompts": "^2.4.9",
"bunfig": "^0.10.1",
"cac": "6.7.13",
"prompts": "^2.4.2",
"ts-pkgx": "0.4.25"
},
"devDependencies": {
"@stacksjs/docs": "^0.70.23",
"@stacksjs/eslint-config": "^4.10.2-beta.3",
"@types/bun": "^1.2.17",
"bun-plugin-dtsx": "^0.9.5",
"typescript": "^5.8.3"
},
"overrides": {
"unconfig": "0.3.10"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint . --fix"
}
}