@leviyuan/lodestar 0.14.9 → 0.15.0
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 +18 -14
- package/dist/lodestar-setup.js +10 -10
- package/dist/lodestar-stop.js +2 -2
- package/dist/lodestar-update.js +4 -4
- package/dist/lodestar.js +201 -385
- package/package.json +37 -19
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leviyuan/lodestar",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"description": "Lodestar (夜航星) — IM-native frontend for Codex via Feishu Card Kit
|
|
7
|
+
"description": "Lodestar (夜航星) — IM-native frontend for Codex and Claude Agent SDK via Feishu Card Kit",
|
|
8
8
|
"type": "module",
|
|
9
|
+
"packageManager": "bun@1.3.11",
|
|
9
10
|
"license": "MIT",
|
|
10
11
|
"author": "leviyuan",
|
|
11
12
|
"homepage": "https://github.com/leviyuan/lodestar#readme",
|
|
@@ -29,13 +30,18 @@
|
|
|
29
30
|
],
|
|
30
31
|
"scripts": {
|
|
31
32
|
"start": "bun daemon.ts",
|
|
32
|
-
"
|
|
33
|
+
"test": "bun test",
|
|
34
|
+
"test:randomized": "bun test --randomize --seed=17",
|
|
35
|
+
"typecheck": "tsc -p tsconfig.json",
|
|
36
|
+
"ci": "bun run audit:production && bun run typecheck && bun run test && bun run test:randomized && bun run build",
|
|
37
|
+
"audit:production": "bun audit --production",
|
|
38
|
+
"build:daemon": "bun build cli.ts --target=node --packages=external --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar.js",
|
|
33
39
|
"build:setup": "bun build src/setup-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-setup.js",
|
|
34
40
|
"build:stop": "bun build src/stop-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-stop.js",
|
|
35
41
|
"build:update": "bun build src/update-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-update.js",
|
|
36
42
|
"build:version": "bun build src/version-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-version.js",
|
|
37
43
|
"build": "bun run build:daemon && bun run build:setup && bun run build:stop && bun run build:update && bun run build:version",
|
|
38
|
-
"prepublishOnly": "bun run
|
|
44
|
+
"prepublishOnly": "bun run ci",
|
|
39
45
|
"postinstall": "node scripts/postinstall.cjs"
|
|
40
46
|
},
|
|
41
47
|
"bin": {
|
|
@@ -52,29 +58,41 @@
|
|
|
52
58
|
"LICENSE"
|
|
53
59
|
],
|
|
54
60
|
"engines": {
|
|
55
|
-
"node": ">=18"
|
|
61
|
+
"node": ">=18.15"
|
|
56
62
|
},
|
|
57
63
|
"dependencies": {
|
|
58
|
-
"@anthropic-ai/claude-agent-sdk": "^0.3.
|
|
59
|
-
"@anthropic-ai/sdk": "^0.
|
|
60
|
-
"@larksuiteoapi/node-sdk": "^1.
|
|
61
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
64
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.238",
|
|
65
|
+
"@anthropic-ai/sdk": "^0.120.0",
|
|
66
|
+
"@larksuiteoapi/node-sdk": "^1.73.0",
|
|
67
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
62
68
|
"@resvg/resvg-js": "^2.6.2",
|
|
69
|
+
"cross-spawn": "^7.0.6",
|
|
63
70
|
"mathjax-full": "^3.2.2",
|
|
64
71
|
"zod": "^4.4.3"
|
|
65
72
|
},
|
|
66
73
|
"optionalDependencies": {
|
|
67
|
-
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "^0.3.
|
|
68
|
-
"@anthropic-ai/claude-agent-sdk-darwin-x64": "^0.3.
|
|
69
|
-
"@anthropic-ai/claude-agent-sdk-linux-arm64": "^0.3.
|
|
70
|
-
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "^0.3.
|
|
71
|
-
"@anthropic-ai/claude-agent-sdk-linux-x64": "^0.3.
|
|
72
|
-
"@anthropic-ai/claude-agent-sdk-linux-x64-musl": "^0.3.
|
|
73
|
-
"@anthropic-ai/claude-agent-sdk-win32-arm64": "^0.3.
|
|
74
|
-
"@anthropic-ai/claude-agent-sdk-win32-x64": "^0.3.
|
|
74
|
+
"@anthropic-ai/claude-agent-sdk-darwin-arm64": "^0.3.238",
|
|
75
|
+
"@anthropic-ai/claude-agent-sdk-darwin-x64": "^0.3.238",
|
|
76
|
+
"@anthropic-ai/claude-agent-sdk-linux-arm64": "^0.3.238",
|
|
77
|
+
"@anthropic-ai/claude-agent-sdk-linux-arm64-musl": "^0.3.238",
|
|
78
|
+
"@anthropic-ai/claude-agent-sdk-linux-x64": "^0.3.238",
|
|
79
|
+
"@anthropic-ai/claude-agent-sdk-linux-x64-musl": "^0.3.238",
|
|
80
|
+
"@anthropic-ai/claude-agent-sdk-win32-arm64": "^0.3.238",
|
|
81
|
+
"@anthropic-ai/claude-agent-sdk-win32-x64": "^0.3.238"
|
|
82
|
+
},
|
|
83
|
+
"overrides": {
|
|
84
|
+
"@hono/node-server": "1.19.15",
|
|
85
|
+
"fast-uri": "3.1.5",
|
|
86
|
+
"hono": "4.13.3",
|
|
87
|
+
"ip-address": "10.5.0",
|
|
88
|
+
"protobufjs": "7.6.5",
|
|
89
|
+
"qs": "6.15.3",
|
|
90
|
+
"ws": "8.21.3"
|
|
75
91
|
},
|
|
76
92
|
"devDependencies": {
|
|
77
|
-
"@types/bun": "
|
|
78
|
-
"
|
|
93
|
+
"@types/bun": "1.3.14",
|
|
94
|
+
"@types/cross-spawn": "6.0.6",
|
|
95
|
+
"@types/node": "18",
|
|
96
|
+
"typescript": "5.9.3"
|
|
79
97
|
}
|
|
80
98
|
}
|