-
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) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.82 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-consensus-core",
"version": "0.11.1",
"description": "Dependency-light TypeScript implementation of the Consensus Validation Protocol (CVP): multi-model debate with confidence-weighted scoring, disagreement detection, and optional judge synthesis.",
"keywords": [
"consensus",
"cvp",
"multi-agent",
"llm",
"ai",
"anthropic",
"openai",
"grok",
"debate",
"roundtable",
"mcp",
"entropyvortex"
],
"license": "MIT",
"author": "Marcelo Ceccon <https://github.com/marceloceccon>",
"homepage": "https://github.com/entropyvortex/ai-consensus-core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/entropyvortex/ai-consensus-core.git"
},
"bugs": {
"url": "https://github.com/entropyvortex/ai-consensus-core/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist coverage *.tsbuildinfo",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^4.1.4",
"typescript": "^5.7.2",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}