-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@debriefer/cli",
"version": "2.1.0",
"description": "CLI tool for multi-source research with reliability scoring and AI synthesis",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"debriefer": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run --passWithNoTests",
"lint": "eslint src/",
"type-check": "tsc --noEmit"
},
"keywords": [
"debriefer",
"cli",
"research",
"multi-source"
],
"author": "Chris Henderson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chenders/debriefer.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/chenders/debriefer#readme",
"bugs": {
"url": "https://github.com/chenders/debriefer/issues"
},
"dependencies": {
"@debriefer/ai": "^2.0.0",
"@debriefer/core": "^2.0.0",
"@debriefer/sources": "^2.0.0",
"commander": "^13"
}
}