-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.07 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.07 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
65
66
67
68
69
70
71
{
"name": "ai-council-proxy",
"version": "1.0.0",
"description": "AI Council Proxy - Multi-model AI deliberation system",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:fast": "cross-env PROPERTY_TEST_RUNS=20 jest",
"test:ci": "cross-env PROPERTY_TEST_RUNS=100 CI=true jest",
"test:watch": "jest --watch",
"test:coverage": "cross-env COLLECT_COVERAGE=true jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docker:setup": "pwsh -File scripts/setup-docker-test-env.ps1",
"docker:stop": "docker stop test-postgres test-redis",
"docker:start": "docker start test-postgres test-redis",
"docker:logs:postgres": "docker logs -f test-postgres",
"docker:logs:redis": "docker logs -f test-redis",
"dev": "ts-node src/index.ts",
"admin": "ts-node src/start-admin.ts"
},
"keywords": [
"ai",
"proxy",
"council",
"deliberation"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@smartesting/flaky-test-detector": "^1.0.3",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.0.0",
"@types/pg": "^8.15.6",
"@types/redis": "^4.0.10",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.39.1",
"eslint-plugin-jest": "^28.14.0",
"fast-check": "^3.15.0",
"jest": "^29.5.0",
"jest-junit": "^17.0.0",
"supertest": "^7.1.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.22",
"@openrouter/sdk": "^0.1.27",
"@types/node-cron": "^3.0.11",
"cheerio": "^1.1.2",
"cors": "^2.8.5",
"express": "^5.2.1",
"express-rate-limit": "^8.2.2",
"jsonwebtoken": "^9.0.2",
"node-cron": "^4.2.1",
"pg": "^8.11.0",
"prom-client": "^15.1.3",
"redis": "^4.6.0",
"uuid": "^14.0.0"
}
}