-
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) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.28 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
{
"type": "module",
"name": "@tarxemo/customer_support",
"description": "A professional React component library for AI-powered customer support integration",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./styles": "./dist/customer_support.css",
"./dist/customer_support.css": "./dist/customer_support.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --passWithNoTests",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext ts,tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"customer-support",
"chat",
"ai",
"widget",
"chatbot",
"support-widget",
"rag",
"sitewise"
],
"author": "Tarxemo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tarxemo/customer_support.git"
},
"bugs": {
"url": "https://github.com/tarxemo/customer_support/issues"
},
"homepage": "https://github.com/tarxemo/customer_support#readme",
"version": "1.3.0",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"lucide-react": ">=0.469.0"
},
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^16.5.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
}
}