-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@baz-scm/cli",
"version": "0.3.17",
"description": "Baz CLI tool for managing pull requests",
"main": "dist/index.js",
"type": "module",
"bin": {
"baz": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"lint": "eslint src --cache",
"lint:fix": "eslint src --fix",
"format:fix": "prettier --write \"**/*.{ts,tsx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"test": "vitest run",
"cicd": "npm run lint:fix && npm run format:fix && npm run test && npm run build"
},
"keywords": [
"cli"
],
"author": "Baz Technologies",
"license": "AGPL-3.0-or-later",
"repository": {
"url": "https://github.com/baz-scm/baz-cli"
},
"dependencies": {
"axios": "^1.12.2",
"axios-retry": "^4.5.0",
"chalk": "^5.6.2",
"commander": "^11.1.0",
"dotenv": "^17.2.2",
"ink": "^6.3.1",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"marked": "^11.2.0",
"marked-terminal": "^7.3.0",
"octokit": "^5.0.5",
"open": "^10.2.0",
"pino": "^9.11.0",
"pino-pretty": "^13.1.1",
"react": "^19.2.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.1",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.13.14",
"@types/react": "^19.2.3",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22"
}
}