lark-kiro-bridge 0.3.1

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,95 @@
1
+ {
2
+ "name": "lark-kiro-bridge",
3
+ "version": "0.3.1",
4
+ "description": "Bridge Feishu/Lark messenger with local Kiro CLI — streaming cards, per-chat sessions, named workspaces",
5
+ "type": "module",
6
+ "bin": {
7
+ "lark-kiro-bridge": "bin/lark-kiro-bridge.mjs"
8
+ },
9
+ "files": [
10
+ "dist/**/*.js",
11
+ "dist/**/*.d.ts",
12
+ "bin",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "dev": "tsup --watch",
18
+ "build": "tsup",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "vitest run",
21
+ "test:watch": "vitest",
22
+ "test:coverage": "vitest run --coverage",
23
+ "lint": "biome check src",
24
+ "lint:fix": "biome check src --write",
25
+ "format": "biome format src --write",
26
+ "changeset": "changeset",
27
+ "version": "changeset version",
28
+ "release": "pnpm build && changeset publish",
29
+ "start": "node bin/lark-kiro-bridge.mjs run",
30
+ "prepublishOnly": "npx tsc --noEmit && npx biome check src && npx vitest run && npx tsup",
31
+ "prepare": "husky"
32
+ },
33
+ "lint-staged": {
34
+ "*.{ts,js,mjs,cjs,json}": [
35
+ "biome check --write --no-errors-on-unmatched"
36
+ ]
37
+ },
38
+ "dependencies": {
39
+ "@larksuiteoapi/node-sdk": "^1.65.0",
40
+ "commander": "^14.0.3",
41
+ "execa": "^9.5.2",
42
+ "p-queue": "^8.0.1",
43
+ "pino": "^10.3.1",
44
+ "pino-pretty": "^11.3.0",
45
+ "proper-lockfile": "^4.1.2",
46
+ "qrcode-terminal": "^0.12.0",
47
+ "zod": "^3.23.8"
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "2.4.15",
51
+ "@changesets/cli": "^2.31.0",
52
+ "@types/node": "^22.10.0",
53
+ "@types/proper-lockfile": "^4.1.4",
54
+ "@types/qrcode-terminal": "^0.12.2",
55
+ "husky": "^9.1.7",
56
+ "lint-staged": "^17.0.5",
57
+ "tsup": "^8.3.5",
58
+ "tsx": "^4.22.3",
59
+ "typescript": "^5.6.3",
60
+ "vitest": "^2.1.8"
61
+ },
62
+ "engines": {
63
+ "node": ">=20.0.0"
64
+ },
65
+ "packageManager": "pnpm@10.18.0",
66
+ "keywords": [
67
+ "feishu",
68
+ "lark",
69
+ "kiro",
70
+ "kiro-cli",
71
+ "bridge",
72
+ "bot",
73
+ "ai-coding-agent"
74
+ ],
75
+ "author": "walterwang0x01",
76
+ "license": "MIT",
77
+ "repository": {
78
+ "type": "git",
79
+ "url": "git+https://github.com/walterwang0x01/lark-kiro-bridge.git"
80
+ },
81
+ "bugs": {
82
+ "url": "https://github.com/walterwang0x01/lark-kiro-bridge/issues"
83
+ },
84
+ "homepage": "https://github.com/walterwang0x01/lark-kiro-bridge#readme",
85
+ "publishConfig": {
86
+ "access": "public",
87
+ "registry": "https://registry.npmjs.org/"
88
+ },
89
+ "pnpm": {
90
+ "onlyBuiltDependencies": [
91
+ "esbuild",
92
+ "protobufjs"
93
+ ]
94
+ }
95
+ }