forked from duanyytop/agents-radar
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 873 Bytes
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
{
"name": "agents-radar",
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@9.15.9",
"scripts": {
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"manifest": "tsx src/generate-manifest.ts",
"weekly": "tsx src/weekly.ts",
"monthly": "tsx src/monthly.ts",
"notify": "tsx src/notify.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"js-yaml": "^4.1.1",
"openai": "^6.27.0"
},
"devDependencies": {
"@eslint/js": "^9",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"eslint": "^9",
"eslint-config-prettier": "^10",
"prettier": "^3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8"
}
}