-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.65 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.65 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
{
"name": "nano-claw",
"version": "0.1.0",
"description": "Ultra-lightweight personal AI assistant (TypeScript + Node.js)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"nano-claw": "./dist/cli/index.js"
},
"files": [
"src",
"dist",
"documentation"
],
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"assistant",
"agent",
"llm",
"chatbot",
"automation",
"nanobot"
],
"author": "hustcc",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node-telegram-bot-api": "^0.64.13",
"axios": "^1.13.5",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"cron-parser": "^4.9.0",
"dingtalk-stream": "^2.1.4",
"discord.js": "^14.25.1",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.67.0",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.19.33",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
}
}