forked from NaniDAO/nanipilled
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 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
{
"name": "nanikotobot",
"version": "1.0.0",
"description": "Telegram bot that uses GPT-3 to chat with users.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:discord": "bun agent/discord/index.ts",
"start:twitter": "bun agent/twitter/index.ts",
"start": "tsx src/index.ts",
"dev": "tsx src/index.ts --watch",
"build": "tsx src/index.ts --build",
"format": "prettier --write 'src/**/*.ts' --cache",
"script": "tsx script.ts"
},
"keywords": [
"GPT-3",
"Telegram",
"Chatbot",
"AI"
],
"author": "Shivanshi Tyagi",
"license": "MIT",
"dependencies": {
"@ai-sdk/openai": "^1.0.1",
"@dqbd/tiktoken": "^1.0.7",
"@openrouter/ai-sdk-provider": "^0.0.6",
"@runwayml/sdk": "^1.3.0",
"@tiptap/extension-document": "^2.0.3",
"@tiptap/extension-paragraph": "^2.0.3",
"@tiptap/extension-text": "^2.0.3",
"@tiptap/html": "^2.0.3",
"@twitter-api-v2/plugin-rate-limit": "^1.1.0",
"@zilliz/milvus2-sdk-node": "^2.2.9",
"agent-twitter-client": "^0.0.16",
"ai": "^4.0.1",
"axios": "0.26.1",
"chromadb": "^1.9.3",
"discord.js": "^14.16.3",
"dotenv": "^16.0.3",
"googleapis": "^118.0.0",
"gpt-3-encoder": "^1.1.4",
"grammy": "^1.16.0",
"https-proxy-agent": "^7.0.5",
"lodash-es": "^4.17.21",
"natural": "^6.3.0",
"openai": "^3.2.1",
"puppeteer": "^20.1.1",
"replicate": "^1.0.1",
"turndown": "^7.1.2",
"twitter-api-v2": "^1.18.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash-es": "^4.17.7",
"@types/node": "^18.16.3",
"@types/turndown": "^5.0.1",
"prettier": "^2.8.8",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
}
}