-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.13 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
80
81
82
{
"name": "@plura-ai/chatbot",
"version": "1.0.0",
"description": "",
"type": "module",
"sideEffects": false,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "vite --port 3000",
"build": "tsc -b && vite build",
"prepublishOnly": "bun run build",
"format:check": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"format:fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"lint": "eslint \"./**/*.ts*\"",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://plura.pro",
"repository": {
"type": "git",
"url": "git+https://github.com/plura-ai/chatbot.git"
},
"bugs": {
"url": "https://github.com/plura-ai/chatbot/issues"
},
"keywords": [],
"dependencies": {
"@changesets/cli": "^2.27.11",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@tabler/icons-react": "^3.28.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.3",
"recoil": "^0.7.7",
"rehype-highlight": "^7.0.1",
"remark-gfm": "^4.0.0",
"shadcn": "^2.1.8",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.4",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
}
}