-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 942 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 942 Bytes
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
{
"name": "science-agent",
"version": "0.6.0",
"description": "Improve scientific collaboration in AI-assisted research. Citation validation, claim verification, cross-file consistency.",
"main": "cli.js",
"bin": {
"science-agent": "./cli.js"
},
"scripts": {
"audit": "node cli.js audit",
"test": "node cli.js audit ./test-fixtures --bibtex=./test-fixtures/refs.bib"
},
"keywords": ["science", "citation", "academic", "confabulation", "ai", "verification", "bibtex", "crossref", "research"],
"repository": {
"type": "git",
"url": "https://github.com/andyed/science-agent.git"
},
"engines": {
"node": ">=18"
},
"files": [
"cli.js",
"src/",
"agent.md",
"docs/",
"README.md",
"CHANGELOG.md"
],
"author": "Andy Edmonds <andyed@gmail.com>",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"bibtex-parse-js": "^0.0.24",
"fuse.js": "^7.1.0"
}
}