@a5c-ai/hooks-mux-cli 5.0.1-staging.05ee168a
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/README.md +27 -0
- package/dist/cli/adapter-loader.d.ts +41 -0
- package/dist/cli/adapter-loader.d.ts.map +1 -0
- package/dist/cli/adapter-loader.js +151 -0
- package/dist/cli/adapter-loader.js.map +1 -0
- package/dist/cli/bootstrap-runtime.d.ts +18 -0
- package/dist/cli/bootstrap-runtime.d.ts.map +1 -0
- package/dist/cli/bootstrap-runtime.js +108 -0
- package/dist/cli/bootstrap-runtime.js.map +1 -0
- package/dist/cli/commands/bootstrap.d.ts +18 -0
- package/dist/cli/commands/bootstrap.d.ts.map +1 -0
- package/dist/cli/commands/bootstrap.js +89 -0
- package/dist/cli/commands/bootstrap.js.map +1 -0
- package/dist/cli/commands/clear-session.d.ts +13 -0
- package/dist/cli/commands/clear-session.d.ts.map +1 -0
- package/dist/cli/commands/clear-session.js +34 -0
- package/dist/cli/commands/clear-session.js.map +1 -0
- package/dist/cli/commands/doctor.d.ts +16 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +333 -0
- package/dist/cli/commands/doctor.js.map +1 -0
- package/dist/cli/commands/exec.d.ts +18 -0
- package/dist/cli/commands/exec.d.ts.map +1 -0
- package/dist/cli/commands/exec.js +104 -0
- package/dist/cli/commands/exec.js.map +1 -0
- package/dist/cli/commands/invoke.d.ts +27 -0
- package/dist/cli/commands/invoke.d.ts.map +1 -0
- package/dist/cli/commands/invoke.js +281 -0
- package/dist/cli/commands/invoke.js.map +1 -0
- package/dist/cli/commands/show-session.d.ts +13 -0
- package/dist/cli/commands/show-session.d.ts.map +1 -0
- package/dist/cli/commands/show-session.js +53 -0
- package/dist/cli/commands/show-session.js.map +1 -0
- package/dist/cli/hooks-logger.d.ts +12 -0
- package/dist/cli/hooks-logger.d.ts.map +1 -0
- package/dist/cli/hooks-logger.js +115 -0
- package/dist/cli/hooks-logger.js.map +1 -0
- package/dist/cli/main.d.ts +3 -0
- package/dist/cli/main.d.ts.map +1 -0
- package/dist/cli/main.js +42 -0
- package/dist/cli/main.js.map +1 -0
- package/dist/cli/stdin.d.ts +9 -0
- package/dist/cli/stdin.d.ts.map +1 -0
- package/dist/cli/stdin.js +24 -0
- package/dist/cli/stdin.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@a5c-ai/hooks-mux-cli",
|
|
3
|
+
"version": "5.0.1-staging.05ee168a",
|
|
4
|
+
"description": "CLI entrypoint for the hooks-mux system",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "commonjs",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"bin": {
|
|
10
|
+
"a5c-hooks-mux": "dist/cli/main.js"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/a5c-ai/babysitter.git",
|
|
18
|
+
"directory": "packages/hooks-mux/cli"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/a5c-ai/babysitter/tree/main/packages/hooks-mux/cli#readme",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/a5c-ai/babysitter/issues"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc -p tsconfig.json",
|
|
30
|
+
"clean": "rimraf dist",
|
|
31
|
+
"lint": "eslint \"src/**/*.ts\" --max-warnings=0",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@a5c-ai/hooks-mux-core": "5.0.1-staging.05ee168a",
|
|
37
|
+
"yargs": "^17.0.0"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/yargs": "^17.0.0",
|
|
41
|
+
"typescript": "^5.7.0",
|
|
42
|
+
"vitest": "^3.0.0",
|
|
43
|
+
"rimraf": "^6.0.0"
|
|
44
|
+
}
|
|
45
|
+
}
|