-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "helloloop",
"version": "0.11.0",
"description": "面向 Codex CLI、Claude Code、Gemini CLI 的多宿主开发工作流插件",
"author": "HelloLoop",
"license": "Apache-2.0",
"homepage": "https://github.com/hellowind777/helloloop",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hellowind777/helloloop.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"helloloop": "bin/helloloop.js"
},
"files": [
".claude-plugin",
".codex-plugin",
"LICENSE",
"README.md",
"bin",
"hosts",
"native",
"package.json",
"scripts",
"skills",
"src",
"templates"
],
"scripts": {
"test": "node -e \"import('./src/cli.mjs').then(() => console.log('HelloLoop CLI import ok'))\"",
"test:repo": "node --test tests/output_schema_contract.test.mjs tests/cli_surface.test.mjs tests/cli_doctor_surface.test.mjs tests/dashboard_web_page.test.mjs tests/prompt_guardrails.test.mjs tests/runtime_recovery.test.mjs tests/status_model.test.mjs tests/supervisor_control.test.mjs tests/terminal_session_limits.test.mjs tests/workflow_model.test.mjs"
},
"engines": {
"node": ">=20"
}
}