Skip to content

Commit 61ba702

Browse files
committed
chore: wip
1 parent a0d85c6 commit 61ba702

File tree

1 file changed

+85
-1
lines changed

1 file changed

+85
-1
lines changed

package.json

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,85 @@
1-
{"name":"x"}
1+
{
2+
"name": "buddy-bot",
3+
"type": "module",
4+
"version": "0.8.9",
5+
"description": "The Stacks CLI.",
6+
"author": "Chris Breuer <[email protected]>",
7+
"license": "MIT",
8+
"homepage": "https://github.com/stacksjs/buddy-bot",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/stacksjs/buddy-bot.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/stacksjs/buddy-bot/issues"
15+
},
16+
"keywords": [
17+
"buddy",
18+
"stacks",
19+
"bun",
20+
"typescript",
21+
"javascript"
22+
],
23+
"exports": {
24+
".": {
25+
"types": "./dist/index.d.ts",
26+
"import": "./dist/index.js"
27+
}
28+
},
29+
"module": "./dist/index.js",
30+
"types": "./dist/index.d.ts",
31+
"bin": {
32+
"buddy-bot": "./dist/bin/cli.js"
33+
},
34+
"files": [
35+
"README.md",
36+
"bin",
37+
"dist"
38+
],
39+
"scripts": {
40+
"build": "bun build.ts",
41+
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
42+
"prepublishOnly": "bun run build",
43+
"test": "bun test",
44+
"lint": "bunx --bun eslint .",
45+
"lint:fix": "bunx --bun eslint . --fix",
46+
"changelog": "bunx logsmith --verbose",
47+
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
48+
"release": "bun run changelog:generate && bunx bumpx prompt --recursive",
49+
"postinstall": "bunx git-hooks",
50+
"typecheck": "bunx tsc --noEmit",
51+
"dev:docs": "bun --bun vitepress dev docs",
52+
"build:docs": "bun --bun vitepress build docs",
53+
"preview:docs": "bun --bun vitepress preview docs"
54+
},
55+
"dependencies": {
56+
"@types/prompts": "^2.4.9",
57+
"bunfig": "^0.10.1",
58+
"cac": "6.7.14",
59+
"prompts": "^2.4.2",
60+
"ts-pkgx": "0.4.38"
61+
},
62+
"devDependencies": {
63+
"@stacksjs/bumpx": "^0.1.17",
64+
"@stacksjs/docs": "^0.70.23",
65+
"@stacksjs/eslint-config": "^4.14.0-beta.3",
66+
"@stacksjs/gitlint": "^0.1.5",
67+
"@stacksjs/logsmith": "^0.1.8",
68+
"@types/bun": "^1.2.20",
69+
"buddy-bot": "^0.8.8",
70+
"bun-git-hooks": "^0.2.19",
71+
"bun-plugin-dtsx": "0.9.5",
72+
"typescript": "^5.9.2"
73+
},
74+
"overrides": {
75+
"unconfig": "0.3.10"
76+
},
77+
"git-hooks": {
78+
"pre-commit": {
79+
"staged-lint": {
80+
"*.{js,ts,json,yaml,yml,md}": "bunx --bun eslint --fix"
81+
}
82+
},
83+
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
84+
}
85+
}

0 commit comments

Comments
 (0)