-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "pikiloom",
"version": "0.4.83",
"description": "Put the world's smartest AI agents in your pocket. Command local Claude & Gemini via IM. | 让最好用的 IM 变成你电脑上的顶级 Agent 控制台",
"type": "module",
"bin": {
"pikiloom": "dist/cli/main.js"
},
"files": [
"dist/",
"dashboard/dist/",
"packages/kernel/dist/",
"packages/kernel/examples/console.html",
"LICENSE",
"README.md"
],
"keywords": [
"telegram",
"ai",
"coding",
"claude",
"codex",
"bridge",
"cli"
],
"author": "xiaotonng",
"license": "MIT",
"packageManager": "npm@11.6.2",
"repository": {
"type": "git",
"url": "git+https://github.com/xiaotonng/pikiloom.git"
},
"scripts": {
"verify:toolchain": "node scripts/verify-toolchain.mjs",
"dev": "bash scripts/dev.sh",
"command": "set -ae && . ./.env && set +a && tsx src/cli/run.ts",
"build:dashboard": "vite build --config dashboard/vite.config.ts",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"copy:pikichannel-web": "node -e \"require('fs').cpSync('src/pikichannel/web','dist/pikichannel/web',{recursive:true})\"",
"build:kernel": "tsc -p packages/kernel/tsconfig.json",
"build": "npm run clean && npm run build:dashboard && tsc && npm run build:kernel && npm run copy:pikichannel-web",
"postbuild": "node -e \"require('fs').chmodSync('dist/cli/main.js',0o755)\"",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "22.23.1 || ^25.2.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": "11.6.2",
"onFail": "error"
}
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/node": "22.20.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/which": "^3.0.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.2",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "7.0.2",
"vitest": "^4.0.18",
"zustand": "^5.0.12"
},
"dependencies": {
"@hono/node-server": "^1.19.11",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@playwright/mcp": "^0.0.75",
"@slack/bolt": "^4.7.2",
"@slack/socket-mode": "^2.0.7",
"@slack/web-api": "^7.15.2",
"dingtalk-stream": "^2.1.6-beta.1",
"discord.js": "^14.26.4",
"hono": "^4.12.9",
"qrcode": "^1.5.4",
"remark-breaks": "^4.0.0",
"undici": "^7.22.0",
"werift": "^0.23.0",
"which": "^6.0.1",
"ws": "^8.18.0"
},
"optionalDependencies": {
"@napi-rs/keyring": "^1.3.0",
"node-pty": "^1.1.0"
}
}