-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.89 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.89 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
79
{
"name": "@miolab/openknowledge-react",
"version": "1.0.0-r-beta.2",
"description": "Customizable React chat widget for OpenKnowledge AI agents.",
"author": "OpenKnowledge",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lucasformiga/openknowledge.git"
},
"keywords": [
"react",
"chat",
"widget",
"ai",
"agent",
"llm",
"open source",
"open-source",
"opensource"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./dist/index.css": "./dist/index.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react,react-dom",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch --external react,react-dom",
"test": "vitest run"
},
"dependencies": {
"@miolab/openknowledge-core": "*",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.5.0",
"jsdom": "^28.1.0",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.19",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}