larkway 0.3.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,60 @@
1
+ {
2
+ "name": "larkway",
3
+ "version": "0.3.6",
4
+ "description": "Thin bridge: Feishu thread to local Claude Code CLI",
5
+ "license": "MIT",
6
+ "author": "Chuck Wu (chuckwu0)",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/chuckwu0/larkway.git"
10
+ },
11
+ "homepage": "https://github.com/chuckwu0/larkway#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/chuckwu0/larkway/issues"
14
+ },
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "type": "module",
19
+ "bin": {
20
+ "larkway": "bin/larkway"
21
+ },
22
+ "scripts": {
23
+ "start": "tsx src/main.ts",
24
+ "cli": "tsx src/cli/index.ts",
25
+ "start:supervised": "bin/start-bridge.sh",
26
+ "dev": "tsx watch src/main.ts",
27
+ "build": "node scripts/build.mjs",
28
+ "prepack": "node scripts/build.mjs",
29
+ "typecheck": "tsc --noEmit",
30
+ "check:links": "bash bin/check-doc-links.sh",
31
+ "test": "vitest run",
32
+ "test:v0.3": "bash bin/v0.3-local-acceptance.sh"
33
+ },
34
+ "dependencies": {},
35
+ "devDependencies": {
36
+ "@types/js-yaml": "^4.0.9",
37
+ "@types/node": "^20.0.0",
38
+ "@types/qrcode": "^1.5.6",
39
+ "@vitest/coverage-v8": "^4.1.7",
40
+ "esbuild": "^0.28.0",
41
+ "tsx": "^4.7.0",
42
+ "typescript": "^5.4.0",
43
+ "vitest": "^4.1.7",
44
+ "@larksuiteoapi/node-sdk": "file:vendor/larksuiteoapi-node-sdk",
45
+ "dotenv": "^16.4.0",
46
+ "js-yaml": "^4.1.1",
47
+ "qrcode": "^1.5.4",
48
+ "qrcode-terminal": "^0.12.0",
49
+ "zod": "^3.22.0"
50
+ },
51
+ "packageManager": "pnpm@9.0.0",
52
+ "engines": {
53
+ "node": ">=20"
54
+ },
55
+ "files": [
56
+ "dist/",
57
+ "bin/larkway",
58
+ "README.md"
59
+ ]
60
+ }