-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.79 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
100
101
102
103
104
105
106
107
108
109
{
"name": "@nodetool-ai/cli",
"version": "0.7.0-rc.40",
"description": "NodeTool chat CLI \u2014 interactive AI chat with agent mode and tool support",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"bin": {
"nodetool-chat": "dist/index.js",
"nodetool": "dist/nodetool.js"
},
"scripts": {
"build": "node ../../scripts/build-typescript-workspace.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"lint": "tsc --noEmit"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"@nodetool-ai/agents": "*",
"@nodetool-ai/app-runtime": "*",
"@nodetool-ai/base-nodes": "*",
"@nodetool-ai/chat": "*",
"@nodetool-ai/compute": "*",
"@nodetool-ai/config": "*",
"@nodetool-ai/deploy": "*",
"@nodetool-ai/dsl": "*",
"@nodetool-ai/elevenlabs-nodes": "*",
"@nodetool-ai/execution": "*",
"@nodetool-ai/fal-nodes": "*",
"@nodetool-ai/huggingface": "*",
"@nodetool-ai/huggingface-nodes": "*",
"@nodetool-ai/kernel": "*",
"@nodetool-ai/minimax-nodes": "*",
"@nodetool-ai/models": "*",
"@nodetool-ai/node-sdk": "*",
"@nodetool-ai/protocol": "*",
"@nodetool-ai/reliability-harness": "*",
"@nodetool-ai/replicate-nodes": "*",
"@nodetool-ai/reve-nodes": "*",
"@nodetool-ai/runtime": "*",
"@nodetool-ai/sandbox-compiler": "*",
"@nodetool-ai/security": "*",
"@nodetool-ai/storage": "*",
"@nodetool-ai/telegram": "*",
"@nodetool-ai/transformers-js-nodes": "*",
"@nodetool-ai/vectorstore": "*",
"@nodetool-ai/websocket": "*",
"@trpc/client": "^11.0.0",
"@trpc/server": "^11.0.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ink": "^6.8.0",
"ink-spinner": "^5.0.0",
"js-yaml": "^4.3.2",
"marked": "^12.0.0",
"marked-terminal": "^7.1.0",
"node-llama-cpp": "^3.0.0",
"postgres": "^3.4.7",
"react": "^19.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.0.0",
"vitest": "^5.0.0",
"typescript": "^5.7.2"
},
"exports": {
".": {
"nodetool-dev": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodetool-ai/nodetool.git",
"directory": "packages/cli"
},
"homepage": "https://nodetool.ai",
"bugs": {
"url": "https://github.com/nodetool-ai/nodetool/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"nodetool",
"ai",
"workflow",
"workflow-automation",
"typescript",
"cli",
"command-line",
"terminal",
"agent-mode",
"chat-cli"
]
}