-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 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
{
"name": "streamdown",
"version": "1.1.5",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"homepage": "https://streamdown.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/streamdown.git",
"directory": "packages/streamdown"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:ui": "vitest --ui run",
"test:coverage": "vitest --coverage run"
},
"author": "Hayden Bleasel <hayden.bleasel@vercel.com>",
"license": "Apache-2.0",
"description": "A drop-in replacement for react-markdown, designed for AI-powered streaming.",
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^3.2.4",
"jsdom": "^25.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tsup": "^8.5.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"clsx": "^2.1.1",
"harden-react-markdown": "^1.0.4",
"katex": "^0.16.22",
"lucide-react": "^0.541.0",
"marked": "^16.1.2",
"mermaid": "^11.0.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"shiki": "^3.9.2",
"tailwind-merge": "^3.3.1"
}
}