lark-codex-bridge 0.0.1 → 0.0.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/CHANGELOG.md +4 -0
- package/dist/cli.js +7 -3
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -4,12 +4,12 @@ import { Command } from "commander";
|
|
|
4
4
|
// package.json
|
|
5
5
|
var package_default = {
|
|
6
6
|
name: "lark-codex-bridge",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
8
|
description: "Bridge Feishu/Lark messenger with local Codex CLI coding agents",
|
|
9
9
|
type: "module",
|
|
10
10
|
packageManager: "pnpm@10.14.0",
|
|
11
11
|
bin: {
|
|
12
|
-
"lark-codex-bridge": "
|
|
12
|
+
"lark-codex-bridge": "bin/lark-codex-bridge.mjs"
|
|
13
13
|
},
|
|
14
14
|
exports: {
|
|
15
15
|
".": {
|
|
@@ -31,6 +31,7 @@ var package_default = {
|
|
|
31
31
|
typecheck: "tsc --noEmit",
|
|
32
32
|
test: "vitest run",
|
|
33
33
|
verify: "pnpm typecheck && pnpm build && pnpm test && node dist/cli.js --help && npm --cache .npm-cache pack --dry-run",
|
|
34
|
+
"manual:publish": "node scripts/manual-publish.mjs",
|
|
34
35
|
prepublishOnly: "pnpm verify"
|
|
35
36
|
},
|
|
36
37
|
repository: {
|
|
@@ -61,7 +62,10 @@ var package_default = {
|
|
|
61
62
|
node: ">=20.0.0"
|
|
62
63
|
},
|
|
63
64
|
pnpm: {
|
|
64
|
-
onlyBuiltDependencies: [
|
|
65
|
+
onlyBuiltDependencies: [
|
|
66
|
+
"esbuild",
|
|
67
|
+
"protobufjs"
|
|
68
|
+
]
|
|
65
69
|
},
|
|
66
70
|
keywords: [
|
|
67
71
|
"feishu",
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lark-codex-bridge",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Bridge Feishu/Lark messenger with local Codex CLI coding agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.14.0",
|
|
7
7
|
"bin": {
|
|
8
|
-
"lark-codex-bridge": "
|
|
8
|
+
"lark-codex-bridge": "bin/lark-codex-bridge.mjs"
|
|
9
9
|
},
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
28
|
"test": "vitest run",
|
|
29
29
|
"verify": "pnpm typecheck && pnpm build && pnpm test && node dist/cli.js --help && npm --cache .npm-cache pack --dry-run",
|
|
30
|
+
"manual:publish": "node scripts/manual-publish.mjs",
|
|
30
31
|
"prepublishOnly": "pnpm verify"
|
|
31
32
|
},
|
|
32
33
|
"repository": {
|
|
@@ -57,7 +58,10 @@
|
|
|
57
58
|
"node": ">=20.0.0"
|
|
58
59
|
},
|
|
59
60
|
"pnpm": {
|
|
60
|
-
"onlyBuiltDependencies": [
|
|
61
|
+
"onlyBuiltDependencies": [
|
|
62
|
+
"esbuild",
|
|
63
|
+
"protobufjs"
|
|
64
|
+
]
|
|
61
65
|
},
|
|
62
66
|
"keywords": [
|
|
63
67
|
"feishu",
|