-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.48 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "boop",
"version": "0.1.0",
"description": "Automated development workflow CLI — chains planning, building, and review into a single pipeline",
"keywords": [],
"license": "MIT",
"author": "",
"bin": {
"boop": "dist/index.js"
},
"directories": {
"test": "test"
},
"files": [
"LICENSE",
"README.md",
"dist/"
],
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsdown && cp -r prompts dist/prompts",
"check": "pnpm format:check && pnpm typecheck && pnpm lint",
"dev": "tsx src/index.ts",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"lint": "oxlint src/",
"lint:fix": "oxlint src/ --fix && pnpm format",
"start": "node dist/index.js",
"test": "vitest run --config vitest.unit.config.ts",
"test:coverage": "vitest run --config vitest.unit.config.ts --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"db:migrate": "tsx src/db/migrate.ts",
"db:seed": "tsx src/db/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@clack/prompts": "^1.0.1",
"@grammyjs/runner": "^2.0.3",
"@grammyjs/transformer-throttler": "^1.2.1",
"@mariozechner/pi-agent-core": "0.52.12",
"@mariozechner/pi-ai": "0.52.12",
"@sinclair/typebox": "0.34.48",
"@whiskeysockets/baileys": "7.0.0-rc.9",
"ajv": "^8.18.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"grammy": "^1.40.0",
"picomatch": "^4.0.3",
"playwright-core": "1.58.2",
"postgres": "^3.4.8",
"proper-lockfile": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.34.5",
"tslog": "^4.10.2",
"undici": "^7.22.0",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@grammyjs/types": "^3.24.0",
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"@types/picomatch": "^4.0.2",
"@types/proper-lockfile": "^4.1.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"oxfmt": "0.32.0",
"oxlint": "^1.47.0",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": [
"@whiskeysockets/baileys",
"protobufjs",
"sharp"
]
}
}