-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.97 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
{
"name": "competitive-intelligence",
"version": "0.1.0",
"description": "Competitive intelligence radar — detect signals before they become headlines",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"docs": "echo 'Docs: README.md, AGENTS.md, ARCHITECTURE.md, docs/'",
"check": "npm run typecheck && npm run lint && npm run format:check && npm test",
"chart:lint": "helm lint chart",
"chart:template:staging": "helm template competitive-intelligence chart -f chart/values-staging.yaml",
"chart:template:production": "helm template competitive-intelligence chart -f chart/values-production.yaml",
"crawl": "tsx src/cli.ts crawl",
"query": "tsx src/cli.ts query",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.105.0",
"@aws-sdk/client-bedrock-runtime": "^3.1030.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
"@slack/bolt": "^4.7.0",
"cheerio": "^1.2.0",
"dotenv": "^17.4.2",
"openai": "^6.34.0",
"pg": "^8.13.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.2",
"@types/pg": "^8.11.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"overrides": {
"ws": "^8.21.0",
"form-data": "^4.0.6",
"undici": "^7.28.0",
"vite": "^8.0.16",
"brace-expansion": "^5.0.6",
"postcss": "^8.5.15",
"protobufjs": "^7.6.4",
"qs": "^6.15.2",
"esbuild": "^0.28.1",
"@opentelemetry/core": "2.8.0"
}
}