-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "@researai/deepscientist",
"version": "1.5.15",
"description": "DeepScientist is not just a fully open-source autonomous scientific discovery system. It is also a research map that keeps growing from every round.",
"license": "Apache-2.0",
"files": [
"AGENTS.md",
"README.md",
"docs/",
"install.sh",
"uv.lock",
"assets/branding/",
"assets/connectors/",
"bin/",
"pyproject.toml",
"src/deepscientist/**/*.py",
"src/prompts/",
"src/skills/[!.]*/",
"src/skills/[!.]*/**",
"src/tui/dist/",
"src/tui/package.json",
"src/ui/dist/"
],
"engines": {
"node": ">=18.18",
"npm": ">=9"
},
"publishConfig": {
"access": "public"
},
"bin": {
"ds": "bin/ds.js",
"ds-cli": "bin/ds.js",
"resear": "bin/ds.js",
"research": "bin/ds.js"
},
"dependencies": {
"@openai/codex": "^0.114.0",
"ink": "npm:@jrichman/ink@6.4.6",
"ink-gradient": "^3.0.0",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"string-width": "^8.1.0"
},
"scripts": {
"ds": "node ./bin/ds.js",
"start": "node ./bin/ds.js daemon",
"install:local": "bash ./install.sh",
"ui:install": "npm --prefix src/ui install",
"ui:dev": "npm --prefix src/ui run dev",
"ui:build": "npm --prefix src/ui run build",
"tui:install": "npm --prefix src/tui install",
"tui:build": "npm --prefix src/tui run build",
"build:release": "node ./scripts/build-release.mjs",
"prepack": "npm run build:release"
}
}