-
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.67 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.67 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": "@hyena0x/one-answer",
"version": "0.1.1",
"description": "Turn multiple AI answer paths into one decision-ready answer.",
"license": "MIT",
"type": "module",
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"llm",
"agents",
"multi-model",
"synthesis",
"confidence"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hyena0x/one-answer.git"
},
"bugs": {
"url": "https://github.com/Hyena0x/one-answer/issues"
},
"homepage": "https://github.com/Hyena0x/one-answer#readme",
"publishConfig": {
"access": "public"
},
"bin": {
"one-answer-mcp": "dist/src/mcp/server.js"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist/src",
"docs",
"examples",
"schemas",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"compare-demo": "tsx src/cli/run-compare-demo.ts",
"dev": "tsx src/index.ts",
"dual-demo": "tsx src/cli/run-dual-demo.ts",
"eval": "npm run build && node dist/src/cli/run-eval.js",
"injected-demo": "tsx src/cli/run-injected-demo.ts",
"mcp": "tsx src/mcp/server.ts",
"prepack": "npm run build",
"synthesize": "tsx src/cli/run-local.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.15.30",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}