@codedevin/dify-chat
Version:
A beautiful and configurable chatbot widget for Dify integration with multiple display modes
89 lines (88 loc) • 2.43 kB
JSON
{
"name": "@codedevin/dify-chat",
"version": "5.0.0",
"description": "A beautiful and configurable chatbot widget for Dify integration with multiple display modes",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/dify-chat-tools.git"
},
"bugs": {
"url": "https://github.com/yourusername/dify-chat-tools/issues"
},
"homepage": "https://github.com/yourusername/dify-chat-tools#readme",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "vite build --mode lib",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build:lib",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"keywords": [
"chatbot",
"dify",
"react",
"widget",
"ai",
"chat",
"floating",
"text-selection",
"embedded"
],
"author": {
"name": "Your Name",
"email": "your.email@example.com",
"url": "https://github.com/yourusername"
},
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"clsx": "^2.1.1",
"framer-motion": "^11.3.19",
"lucide-react": "^0.446.0",
"marked": "^16.1.2",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.9.2"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.9.1"
}
}