@twsxtd/hapi 0.1.0 → 0.1.2
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 +1 -1
- package/bin/{hapi.js → hapi.cjs} +0 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ See `src/configuration.ts` for all options.
|
|
|
66
66
|
### Required
|
|
67
67
|
|
|
68
68
|
- `CLI_API_TOKEN` - Shared secret; must match the server. Can be set via env or `~/.hapi/settings.json` (env wins).
|
|
69
|
-
- `
|
|
69
|
+
- `HAPI_SERVER_URL` - Server base URL (default: http://localhost:3006).
|
|
70
70
|
|
|
71
71
|
### Optional
|
|
72
72
|
|
package/bin/{hapi.js → hapi.cjs}
RENAMED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twsxtd/hapi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "App for agentic coding - access coding agent anywhere",
|
|
5
5
|
"author": "Kirill Dubovitskiy & weishu",
|
|
6
6
|
"license": "MIT",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"directory": "cli"
|
|
14
14
|
},
|
|
15
15
|
"bin": {
|
|
16
|
-
"hapi": "bin/hapi.
|
|
16
|
+
"hapi": "bin/hapi.cjs"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
|
-
"bin/hapi.
|
|
19
|
+
"bin/hapi.cjs"
|
|
20
20
|
],
|
|
21
21
|
"imports": {
|
|
22
22
|
"#embedded-assets": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@twsxtd/hapi-darwin-arm64": "0.1.
|
|
29
|
-
"@twsxtd/hapi-darwin-x64": "0.1.
|
|
30
|
-
"@twsxtd/hapi-linux-arm64": "0.1.
|
|
31
|
-
"@twsxtd/hapi-linux-x64": "0.1.
|
|
32
|
-
"@twsxtd/hapi-win32-x64": "0.1.
|
|
28
|
+
"@twsxtd/hapi-darwin-arm64": "0.1.2",
|
|
29
|
+
"@twsxtd/hapi-darwin-x64": "0.1.2",
|
|
30
|
+
"@twsxtd/hapi-linux-arm64": "0.1.2",
|
|
31
|
+
"@twsxtd/hapi-linux-x64": "0.1.2",
|
|
32
|
+
"@twsxtd/hapi-win32-x64": "0.1.2"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"typecheck": "tsc --noEmit",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"build:exe:allinone:all": "bun run scripts/build-executable.ts --with-web-assets --all",
|
|
40
40
|
"prepare-npm-packages": "bun run scripts/prepare-npm-packages.ts",
|
|
41
41
|
"prepack": "bun run prepare-npm-packages",
|
|
42
|
-
"publish-npm": "bun run scripts/publish-npm.ts",
|
|
43
|
-
"publish-npm:dry-run": "bun run scripts/publish-npm.ts --dry-run",
|
|
44
42
|
"tools:unpack": "bun run scripts/unpack-tools.ts",
|
|
45
|
-
"
|
|
43
|
+
"update-homebrew-formula": "bun run scripts/update-homebrew-formula.ts",
|
|
44
|
+
"test": "bun run tools:unpack && vitest run",
|
|
46
45
|
"test:win": "vitest run",
|
|
47
46
|
"dev": "tsx src/index.ts",
|
|
48
47
|
"dev:local-server": "tsx --env-file .env.dev-local-server src/index.ts",
|
|
49
|
-
"dev:integration-test-env": "tsx --env-file .env.integration-test src/index.ts"
|
|
48
|
+
"dev:integration-test-env": "tsx --env-file .env.integration-test src/index.ts",
|
|
49
|
+
"release-all": "bun run scripts/release-all.ts"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@modelcontextprotocol/sdk": "^1.22.0",
|