-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
72
73
74
{
"name": "autolabos",
"version": "1.0.0",
"description": "AI-agent-driven research automation with a slash-first TUI and local web ops UI.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lhy0718/AutoLabOS.git"
},
"homepage": "https://github.com/lhy0718/AutoLabOS#readme",
"bugs": {
"url": "https://github.com/lhy0718/AutoLabOS/issues"
},
"keywords": [
"research-automation",
"ai-agents",
"scientific-workflows",
"literature-review",
"terminal-ui",
"web-ui",
"openai-api",
"semantic-scholar",
"pdf-analysis",
"typescript",
"nodejs"
],
"bin": {
"autolabos": "dist/cli/main.js"
},
"files": [
"dist",
"web/dist",
"README.md",
"README.ko.md",
"LICENSE",
".env.example"
],
"scripts": {
"web:install": "npm --prefix web install",
"prebuild": "npm run web:install",
"build": "tsc -p tsconfig.json && npm --prefix web run build",
"dev": "tsx src/cli/main.ts",
"predev:web": "npm run web:install",
"dev:web": "npm --prefix web run build && tsx src/cli/main.ts web",
"pretest": "npm run web:install",
"test": "node ./run-tests.mjs",
"pretest:web": "npm run web:install",
"test:web": "npm --prefix web run test",
"test:watch": "vitest",
"eval:harness": "tsx src/cli/main.ts eval-harness",
"validate:harness": "tsx src/cli/validateHarness.ts",
"test:smoke:natural-collect": "bash tests/smoke/run_natural_collect_pending_command.sh",
"test:smoke:natural-collect-execute": "bash tests/smoke/run_natural_collect_execute_and_verify_artifacts.sh",
"test:smoke:all": "AUTOLABOS_SMOKE_MODE=all bash tests/smoke/run_ci_smoke.sh",
"test:smoke:natural-composite-all": "bash tests/smoke/run_natural_composite_run_all_execute_and_verify_artifacts.sh",
"test:smoke:natural-llm-composite-all": "bash tests/smoke/run_natural_llm_composite_run_all_execute_and_verify_artifacts.sh",
"test:smoke:ci": "CI=true bash tests/smoke/run_ci_smoke.sh",
"prepack": "npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"cheerio": "^1.2.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.13.14",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"vitest": "^4.0.18"
}
}