This repository was archived by the owner on Mar 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.08 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.08 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
{
"name": "@teichai/buddy",
"version": "0.0.5",
"description": "Terminal-first AI assistant with onboarding, chat UI, and local or remote server support.",
"license": "MIT",
"type": "module",
"bin": {
"buddy": "dist/index.js"
},
"exports": {
"./plugin": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
},
"files": [
"dist",
"LICENSE",
"docs",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TeichAI/buddy.git"
},
"bugs": {
"url": "https://github.com/TeichAI/buddy/issues"
},
"homepage": "https://github.com/TeichAI/buddy#readme",
"keywords": [
"ai",
"assistant",
"cli",
"terminal",
"tui",
"openai"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && npm run build:cli",
"build:cli": "tsc -p tsconfig.build.json",
"build:tui": "npm run build:cli",
"build:server": "npm run build:cli",
"dev": "npm run dev:cli",
"dev:cli": "tsx src/index.ts",
"dev:tui": "tsx src/index.ts",
"dev:config": "tsx src/index.ts config",
"dev:server": "tsx src/index.ts server run",
"start": "npm run start:cli",
"start:cli": "node dist/index.js",
"start:tui": "node dist/index.js",
"start:server": "node dist/index.js server run",
"check": "tsc --noEmit -p tsconfig.json",
"test": "node --import tsx --test src/*.test.ts src/**/*.test.ts",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm test"
},
"dependencies": {
"@mariozechner/pi-tui": "^0.62.0",
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"openai": "^4.104.0",
"ws": "^8.20.0"
},
"overrides": {
"discord.js": {
"undici": "6.24.1"
},
"@discordjs/rest": {
"undici": "6.24.1"
}
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}