-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.25 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
{
"name": "ai-react-markdown",
"version": "1.6.0",
"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",
"typecheck": "tsc --noEmit -p tsconfig.storybook.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"version-packages": "node scripts/version-packages.mjs",
"preflight": "pnpm lint && pnpm format:check && pnpm build && pnpm -r typecheck && pnpm typecheck && pnpm vitest run",
"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.2.1",
"@eslint/js": "^10.0.1",
"@storybook/addon-a11y": "^10.4.6",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-onboarding": "^10.4.6",
"@storybook/addon-themes": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/unist": "^3.0.3",
"@vitest/browser-playwright": "^4.1.10",
"@vitest/coverage-v8": "^4.1.10",
"autoprefixer": "^10.5.2",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"katex": "^0.17.0",
"playwright": "^1.61.1",
"postcss": "^8.5.16",
"postcss-cli": "^11.0.1",
"prettier": "^3.9.4",
"react-scan": "^0.5.7",
"sass": "^1.101.0",
"storybook": "^10.4.6",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.10"
}
}