feishu-codex-connector 0.1.6

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/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "feishu-codex-connector",
3
+ "version": "0.1.6",
4
+ "description": "Run OpenAI Codex from Feishu/Lark chat with rich cards, persistent events, and local workspace controls.",
5
+ "type": "module",
6
+ "packageManager": "pnpm@10.33.3",
7
+ "bin": {
8
+ "feishu-codex": "bin/feishu-codex.mjs"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "bin",
18
+ "dist",
19
+ "docs/ARCHITECTURE.md",
20
+ "docs/COMMAND_COMPLETION_SPEC.md",
21
+ "docs/FEATURE_PARITY_SPEC.md",
22
+ "docs/FEISHU_PERMISSIONS.md",
23
+ "docs/SPEC.md",
24
+ "README.md",
25
+ "README.zh.md",
26
+ "LICENSE"
27
+ ],
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "typecheck": "tsc --noEmit",
31
+ "test": "vitest run",
32
+ "ci:local": "pnpm test && pnpm typecheck && pnpm build",
33
+ "prepublishOnly": "pnpm ci:local"
34
+ },
35
+ "dependencies": {
36
+ "@clack/prompts": "^1.4.0",
37
+ "@larksuiteoapi/node-sdk": "^1.66.1",
38
+ "@openai/codex-sdk": "^0.137.0",
39
+ "commander": "^14.0.2",
40
+ "cross-spawn": "^7.0.6",
41
+ "proper-lockfile": "^4.1.2",
42
+ "qrcode": "^1.5.4",
43
+ "qrcode-terminal": "^0.12.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/cross-spawn": "^6.0.6",
47
+ "@types/node": "^24.10.1",
48
+ "@types/proper-lockfile": "^4.1.4",
49
+ "@types/qrcode": "^1.5.6",
50
+ "@types/qrcode-terminal": "^0.12.2",
51
+ "tsup": "^8.5.1",
52
+ "typescript": "^5.9.3",
53
+ "vitest": "^4.0.14"
54
+ },
55
+ "pnpm": {
56
+ "overrides": {
57
+ "axios": "^1.17.0"
58
+ }
59
+ },
60
+ "engines": {
61
+ "node": ">=20.12.0"
62
+ },
63
+ "keywords": [
64
+ "feishu",
65
+ "lark",
66
+ "feishu-bot",
67
+ "lark-bot",
68
+ "openai",
69
+ "codex",
70
+ "openai-codex",
71
+ "codex-cli",
72
+ "ai-coding-agent",
73
+ "connector",
74
+ "bridge",
75
+ "bot",
76
+ "personal-agent",
77
+ "workspace"
78
+ ],
79
+ "author": "jack.xie <nobodyjack2050@gmail.com>",
80
+ "license": "MIT",
81
+ "repository": {
82
+ "type": "git",
83
+ "url": "git+https://github.com/superjack2050/feishu-codex-connector.git"
84
+ },
85
+ "homepage": "https://github.com/superjack2050/feishu-codex-connector#readme",
86
+ "bugs": {
87
+ "url": "https://github.com/superjack2050/feishu-codex-connector/issues"
88
+ },
89
+ "publishConfig": {
90
+ "access": "public",
91
+ "registry": "https://registry.npmjs.org/"
92
+ }
93
+ }