forked from assistant-ui/assistant-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) 路 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) 路 1.55 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
{
"name": "@assistant-ui/react-markdown",
"version": "0.10.3",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./styles/dot.css": {
"default": "./styles/dot.css"
}
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"styles",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "tsx scripts/build.mts",
"lint": "eslint ."
},
"dependencies": {
"@radix-ui/react-primitive": "^2.1.0",
"@radix-ui/react-use-callback-ref": "^1.1.1",
"@types/hast": "^3.0.4",
"classnames": "^2.5.1",
"react-markdown": "^10.1.0"
},
"peerDependencies": {
"@assistant-ui/react": "^0.10.6",
"@types/react": "*",
"react": "^18 || ^19 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@assistant-ui/react": "workspace:*",
"@assistant-ui/x-buildutils": "workspace:*",
"@types/node": "^22.14.1",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"tsx": "^4.19.3"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://www.assistant-ui.com/",
"repository": {
"type": "git",
"url": "https://github.com/assistant-ui/assistant-ui/tree/main/packages/react-markdown"
},
"bugs": {
"url": "https://github.com/assistant-ui/assistant-ui/issues"
}
}