-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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": "croo-worker",
"version": "0.2.1",
"description": "Research provider agent — produces a sourced research draft on any topic, on-chain",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --silent --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"audit": "npm audit --audit-level=high || true",
"ci": "npm run audit && npm run lint && npm run typecheck && npm run test:coverage"
},
"keywords": [
"croo",
"agent",
"a2a",
"research",
"worker"
],
"license": "MIT",
"dependencies": {
"@edycutjong/croo-core": "^0.5.1"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"license-checker": "^25.0.1",
"tsx": "^4.23.1",
"typescript": "^5.8.0",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
},
"overrides": {
"ws": "^8.21.0"
}
}