forked from duanyytop/agents-radar
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"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",
"notify:feishu": "tsx src/feishu.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"js-yaml": "^4.1.1",
"marked": "^17.0.4",
"openai": "^6.27.0"
},
"devDependencies": {
"@eslint/js": "^9",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-prettier": "^10",
"husky": "^9.1.7",
"prettier": "^3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8",
"vitest": "^4.0.18"
}
}