-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.61 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.61 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
96
97
98
99
{
"name": "@makefinks/daemon",
"description": "Terminal-first AI agent with an interactive avatar, vim-style controls, and advanced voice capabilities.",
"author": "makefinks",
"license": "MIT",
"keywords": [
"agent",
"llm-agent",
"terminal-ui",
"tui",
"cli",
"ai",
"terminal",
"llm",
"daemon",
"makefinks",
"openrouter",
"bun",
"voice",
"ai-assistant"
],
"repository": {
"type": "git",
"url": "git+https://github.com/makefinks/daemon.git"
},
"bugs": {
"url": "https://github.com/makefinks/daemon/issues"
},
"module": "src/index.tsx",
"type": "module",
"version": "0.11.0",
"bin": {
"daemon": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build:cli": "bun build src/cli.ts --outdir dist --target node",
"dev": "bun run --watch src/index.tsx",
"check": "bun run typecheck && bun run lint && bun run format:check",
"typecheck": "bunx tsc -p tsconfig.json --noEmit",
"lint": "biome lint src __tests__",
"lint:fix": "biome lint --write src __tests__",
"format": "biome format --write src __tests__",
"format:check": "biome format src __tests__",
"preview:avatar": "bun run src/avatar-preview.ts",
"preview:avatar:mp4": "bun run src/avatar-preview.ts --mp4 tmp/avatar-preview.mp4",
"setup:browsers": "bun run src/scripts/setup-browsers.ts",
"setup:hooks": "bash .githooks/setup.sh",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run build:cli",
"release:patch": "bash ./scripts/release.sh patch",
"release:minor": "bash ./scripts/release.sh minor",
"release:major": "bash ./scripts/release.sh major",
"release:notes": "bash ./scripts/release.sh notes"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/react": "^19.2.7",
"playwright": "^1.57.0"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"@ai-sdk/mcp": "^1.0.14",
"@ai-sdk/openai": "^3.0.0",
"@github/copilot-sdk": "^0.1.23",
"@openrouter/ai-sdk-provider": "^2.1.0",
"@opentui-ui/toast": "^0.0.3",
"@opentui/core": "0.1.75",
"@opentui/react": "0.1.75",
"ai": "^6.0.0",
"exa-js": "^2.0.12",
"mem0ai": "^2.2.1",
"openai": "^6.16.0",
"opentui-spinner": "^0.0.6",
"react": "^19.2.3",
"zod-to-json-schema": "^3.25.1"
},
"optionalDependencies": {
"@opentui/core-win32-x64": "0.1.75",
"@opentui/core-win32-arm64": "0.1.75",
"@opentui/core-darwin-x64": "0.1.75",
"@opentui/core-darwin-arm64": "0.1.75",
"@opentui/core-linux-x64": "0.1.75",
"@opentui/core-linux-arm64": "0.1.75"
}
}