-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.62 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 4.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "autolabos",
"version": "0.1.0",
"description": "Codex-native governance harness for audit-first AI research workflows, evidence gates, and paper-readiness review.",
"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",
"codex-plugin",
"research-governance",
"paper-readiness",
"evidence-gates"
],
"bin": {
"autolabos": "dist/cli/main.js"
},
"files": [
"dist",
"web/dist",
"plugins",
"scripts/live-validation-preflight.mjs",
"scripts/live-validation-doctor-pty-smoke.py",
"scripts/live-validation-start-run.py",
"scripts/live-validation-resume-check.py",
"scripts/live-validation-approve-and-run-next.py",
"README.md",
"docs/README*.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",
"evolve:skills": "bash scripts/evolve-skills.sh",
"validation:preflight": "node scripts/live-validation-preflight.mjs",
"validation:doctor": "python3 scripts/live-validation-doctor-pty-smoke.py",
"validation:start-live": "python3 scripts/live-validation-start-run.py",
"validation:resume-check": "python3 scripts/live-validation-resume-check.py",
"validation:continue": "python3 scripts/live-validation-approve-and-run-next.py",
"validate:harness": "tsx src/cli/validateHarness.ts",
"validate:research-governance": "node scripts/validate-research-governance-e2e.mjs",
"validate:plugin-bridge": "node scripts/validate-plugin-bridge-e2e.mjs",
"validate:plugin-bridge:local": "node scripts/validate-plugin-bridge-e2e.mjs --installed",
"validate:plugin-faults": "node scripts/validate-plugin-fault-matrix.mjs",
"validate:plugin-hermetic": "node scripts/validate-plugin-hermetic-cache.mjs",
"validate:plugin-operations": "node scripts/validate-plugin-operations.mjs",
"validate:plugin-operations:local": "node scripts/validate-plugin-operations.mjs --local",
"plugin:contract": "node plugins/autolabos-research-governor/scripts/print-contract.mjs",
"plugin:doctor": "node plugins/autolabos-research-governor/scripts/plugin-doctor.mjs",
"plugin:discovery-check": "node plugins/autolabos-research-governor/scripts/plugin-discovery-check.mjs",
"plugin:dogfood": "node plugins/autolabos-research-governor/scripts/dogfood-audit.mjs",
"plugin:research": "node plugins/autolabos-research-governor/scripts/run-research-intent.mjs",
"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",
"prepublic:snapshot": "npm test -- tests/publicCodeSanitization.test.ts",
"public:snapshot": "node scripts/export-public-snapshot.mjs",
"prepack": "npm run build",
"plugin:release-check": "node plugins/autolabos-research-governor/scripts/plugin-release-check.mjs",
"plugin:sync-cache": "node plugins/autolabos-research-governor/scripts/sync-cache.mjs"
},
"engines": {
"node": "20.x || 22.x || 23.x || 24.x || 25.x"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"cheerio": "~1.0.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.14",
"tsx": "^4.20.3",
"typescript": "^5.8.2",
"vite": "^6.4.3",
"vitest": "^3.2.7"
}
}