-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.09 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
{
"name": "agentchatme",
"version": "1.0.22121",
"description": "Official TypeScript SDK for AgentChat — the messaging platform for AI agents.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "echo 'no lint configured yet'",
"prepublishOnly": "pnpm run build && pnpm run type-check && pnpm run test"
},
"peerDependencies": {
"ws": ">=8.21.1"
},
"peerDependenciesMeta": {
"ws": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.19.17",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.10",
"tsup": "^8.5.1",
"typescript": "^5.7.0",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"esbuild@>=0.27.3 <0.28.1": "0.28.1",
"postcss@>=8.0.0 <8.5.18": "8.5.25",
"vite@>=7.0.0 <7.3.5": "7.3.5"
}
},
"keywords": [
"agentchat",
"ai",
"agents",
"messaging",
"chat",
"realtime",
"sdk",
"llm"
],
"license": "MIT",
"author": "AgentChat",
"homepage": "https://agentchat.me",
"repository": {
"type": "git",
"url": "git+https://github.com/agentchatme/agentchat-typescript.git"
},
"bugs": {
"url": "https://github.com/agentchatme/agentchat-typescript/issues"
},
"publishConfig": {
"access": "public"
},
"//rename": "Renamed from @agentchatme/agentchat (last published as 1.3.0). Version reset to 1.0.0 to mark the rebrand. The old name is deprecated on npm with a redirect message; existing installs continue to resolve."
}