-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.32 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
{
"name": "@resend/chat-sdk-adapter",
"version": "0.3.0",
"description": "Vercel Chat SDK adapter for Resend email",
"author": "João Melo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/resend/resend-chat-sdk.git"
},
"homepage": "https://github.com/resend/resend-chat-sdk",
"bugs": {
"url": "https://github.com/resend/resend-chat-sdk/issues"
},
"keywords": [
"resend",
"email",
"chat",
"adapter",
"vercel",
"chat-sdk",
"webhook"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm run build",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"canary:enter": "changeset pre enter canary",
"canary:exit": "changeset pre exit",
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm lint:fix",
"release": "node --import tsx/esm ./scripts/release.mts",
"release:build": "pnpm build",
"release:dry-run": "node --import tsx/esm ./scripts/release.mts --dry-run"
},
"peerDependencies": {
"@chat-adapter/shared": "^4.15.0",
"chat": "^4.15.0"
},
"dependencies": {
"hast-util-to-html": "^9.0.5",
"mdast-util-to-hast": "^13.2.1",
"react-email": "^6.0.0",
"resend": "^6.9.2"
},
"devDependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.0",
"@biomejs/biome": "2.5.8",
"@changesets/cli": "2.29.8",
"@changesets/pre": "2.0.2",
"@chat-adapter/shared": "4.37.0",
"@chat-adapter/state-memory": "4.37.0",
"@types/mdast": "4.0.4",
"@types/node": "22.20.1",
"@types/react": "19.2.14",
"chat": "4.40.0",
"mdast-util-to-string": "4.0.0",
"pkg-pr-new": "0.0.66",
"react": "19.2.4",
"react-dom": "19.2.4",
"remark": "15.0.1",
"svix": "1.99.1",
"tsx": "4.23.12",
"typescript": "5.9.3",
"ultracite": "7.2.4",
"vitest": "3.2.7"
},
"files": [
"dist"
]
}