-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "openmantis",
"description": "A minimal multi-platform agentic chat framework built with Bun + Vercel AI SDK",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LiangNiang/OpenMantis"
},
"module": "src/index.ts",
"type": "module",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"dev": "OPENMANTIS_DATA_DIR=\"$PWD/.openmantis\" LOG_LEVEL=debug bun --watch src/cli.ts run",
"dev:full": "bun run dev:web & bun run dev",
"dev:web": "bun --filter @openmantis/web dev",
"typecheck": "bun x tsc --noEmit",
"check": "biome check --write --unsafe",
"build:web": "bun --filter @openmantis/web build",
"build:bin": "bun scripts/build.ts",
"build:bin:all": "bun scripts/build.ts --all"
},
"dependencies": {
"@openmantis/channel-feishu": "workspace:*",
"@openmantis/channel-qq": "workspace:*",
"@openmantis/channel-wecom": "workspace:*",
"@openmantis/common": "workspace:*",
"@openmantis/core": "workspace:*",
"@openmantis/scheduler": "workspace:*",
"@openmantis/web-server": "workspace:*",
"ai": "^6.0.180"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^6"
}
}