-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.07 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.07 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
{
"name": "ai-response-parser",
"version": "1.3.4",
"type": "module",
"description": "React component to parse and format AI/LLM responses with beautiful markdown, syntax-highlighted code blocks, tables, and dark mode support. Perfect for ChatGPT, Gemini, and AI chatbot UIs.",
"keywords": [
"ai",
"llm",
"chatgpt",
"gemini",
"ai-response",
"ai-parser",
"markdown-parser",
"react-markdown",
"syntax-highlighting",
"code-blocks",
"chat-ui",
"ai-chat",
"response-formatter",
"code-formatter",
"markdown-renderer",
"ai-code-converter",
"ai-response-parser"
],
"homepage": "https://manojbelbase.github.io/ai-response-parser",
"repository": {
"type": "git",
"url": "https://github.com/ManojBelbase/ai-response-parser"
},
"bugs": {
"url": "https://github.com/ManojBelbase/ai-response-parser/issues"
},
"author": "Manoj Belbase",
"license": "MIT",
"module": "lib/index.esm.js",
"main": "lib/index.cjs.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"types/",
"README.md"
],
"scripts": {
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"build:types": "tsc --emitDeclarationOnly",
"dev": "vite",
"prepare": "npm run build",
"lint": "eslint .",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"rollup": "^4.53.3",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.47.0",
"vite": "^7.2.4"
},
"engines": {
"node": ">=14.0.0"
}
}