open-research 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "open-research",
3
+ "version": "0.1.0",
4
+ "description": "Local-first research CLI agent — discover papers, synthesize notes, run analysis, and draft artifacts from your terminal.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "bin": {
8
+ "open-research": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "builtin-skills"
13
+ ],
14
+ "scripts": {
15
+ "dev": "tsx src/cli.ts",
16
+ "build": "tsup src/cli.ts --format esm --clean --out-dir dist",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "prepublishOnly": "npm run build"
20
+ },
21
+ "engines": {
22
+ "node": ">=20"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/gangj277/open-research.git"
27
+ },
28
+ "homepage": "https://github.com/gangj277/open-research",
29
+ "keywords": [
30
+ "research",
31
+ "cli",
32
+ "agent",
33
+ "papers",
34
+ "academic",
35
+ "openai",
36
+ "arxiv",
37
+ "semantic-scholar"
38
+ ],
39
+ "dependencies": {
40
+ "cheerio": "^1.1.2",
41
+ "commander": "^14.0.1",
42
+ "gray-matter": "^4.0.3",
43
+ "ink": "^6.3.1",
44
+ "ink-text-input": "^6.0.0",
45
+ "open": "^10.2.0",
46
+ "pdfjs-dist": "^5.4.296",
47
+ "react": "^19.2.0",
48
+ "zod": "^3.25.76"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^24.6.0",
52
+ "@types/react": "^19.2.2",
53
+ "ink-testing-library": "^4.0.0",
54
+ "tsup": "^8.5.0",
55
+ "tsx": "^4.21.0",
56
+ "typescript": "^5.9.3",
57
+ "vitest": "^3.2.4"
58
+ }
59
+ }