-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "nanoclaw-radar",
"version": "1.0.0",
"description": "Daily automated tracking of NanoClaw ecosystem and AI agent developments",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"digest": "tsx src/index.ts",
"generate:rss": "node -e \"const { generateRSSFeed } = require('./dist/generators/rss.js'); generateRSSFeed();\"",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"nanoclaw",
"ai-agents",
"claude",
"mcp",
"automation",
"digest"
],
"author": "NanoClaw Community",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.27.0",
"@octokit/rest": "^20.1.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"rss": "^1.2.2",
"telegraf": "^4.15.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.17",
"@types/rss": "^0.0.32",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}