-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.08 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.08 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
{
"name": "ai-react-markdown",
"version": "1.2.9",
"private": true,
"type": "module",
"description": "A React component for rendering AI-generated Markdown with LaTeX math, GFM, syntax highlighting and more.",
"scripts": {
"build": "pnpm --filter './packages/*' run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version-packages": "node scripts/version-packages.mjs",
"release": "pnpm build && pnpm publish -r --access public",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"react",
"markdown",
"ai",
"llm",
"latex",
"katex",
"gfm",
"streaming",
"react-markdown"
],
"author": "Brian Lee <aiephoenixbl@gmail.com> (https://github.com/AIEPhoenix)",
"license": "MIT",
"homepage": "https://github.com/AIEPhoenix/ai-react-markdown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AIEPhoenix/ai-react-markdown.git"
},
"bugs": {
"url": "https://github.com/AIEPhoenix/ai-react-markdown/issues"
},
"packageManager": "pnpm@10.28.1",
"devDependencies": {
"@chromatic-com/storybook": "^5.1.1",
"@eslint/js": "^10.0.1",
"@storybook/addon-a11y": "^10.3.3",
"@storybook/addon-docs": "^10.3.3",
"@storybook/addon-onboarding": "^10.3.3",
"@storybook/addon-themes": "^10.3.3",
"@storybook/addon-vitest": "^10.3.3",
"@storybook/react-vite": "^10.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"autoprefixer": "^10.4.27",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"katex": "^0.16.44",
"playwright": "^1.59.0",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"sass": "^1.98.0",
"storybook": "^10.3.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}