ai-ebm-assistant-v4 0.2.18 → 0.2.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/README.md +119 -119
  2. package/dist/index.es.js +4425 -4073
  3. package/dist/index.umd.js +94 -94
  4. package/package.json +121 -121
package/package.json CHANGED
@@ -1,121 +1,121 @@
1
- {
2
- "name": "ai-ebm-assistant-v4",
3
- "private": false,
4
- "version": "0.2.18",
5
- "type": "module",
6
- "main": "./dist/index.umd.js",
7
- "module": "./dist/index.es.js",
8
- "exports": {
9
- ".": {
10
- "module": "./dist/index.es.js",
11
- "import": "./dist/index.es.js",
12
- "require": "./dist/index.umd.js",
13
- "default": "./dist/index.umd.js"
14
- }
15
- },
16
- "description": "Functional components build for EBM",
17
- "files": [
18
- "dist"
19
- ],
20
- "sideEffects": false,
21
- "scripts": {
22
- "start": "npm run dev",
23
- "dev": "vite --host --open",
24
- "build": "vite build",
25
- "build:singlefile": "vite build --config vite.config.singlefile.js",
26
- "preview": "vite preview",
27
- "lint": "eslint \"src/**/*.js*\" --fix",
28
- "clean": " rm -rf node_modules && rm -rf dist",
29
- "test": "echo \"Error: no test specified\"",
30
- "prepare": "husky install"
31
- },
32
- "dependencies": {
33
- "@ai-sdk/openai": "^2.0.28",
34
- "@ai-sdk/react": "^2.0.44",
35
- "@emotion/react": "^11.14.0",
36
- "@emotion/styled": "^11.14.1",
37
- "@fontsource/poppins": "^4.5.10",
38
- "@mui/icons-material": "^5.15.18",
39
- "@mui/lab": "^5.0.0-alpha.170",
40
- "@mui/material": "^5.15.18",
41
- "@mui/styled-engine-sc": "^7.3.2",
42
- "@mui/x-date-pickers": "^8.6.0",
43
- "@radix-ui/react-avatar": "^1.1.10",
44
- "@radix-ui/react-collapsible": "^1.1.12",
45
- "@radix-ui/react-dropdown-menu": "^2.1.16",
46
- "@radix-ui/react-hover-card": "^1.1.15",
47
- "@radix-ui/react-progress": "^1.1.7",
48
- "@radix-ui/react-scroll-area": "^1.2.10",
49
- "@radix-ui/react-select": "^2.2.6",
50
- "@radix-ui/react-slot": "^1.2.3",
51
- "@radix-ui/react-tooltip": "^1.2.8",
52
- "@radix-ui/react-use-controllable-state": "^1.2.2",
53
- "@tailwindcss/postcss": "^4.1.13",
54
- "@tailwindcss/vite": "^4.1.13",
55
- "ahooks": "^3.7.4",
56
- "ai": "^5.0.44",
57
- "ai-elements": "^1.1.1",
58
- "axios": "^1.12.2",
59
- "class-variance-authority": "^0.7.1",
60
- "clsx": "^2.1.1",
61
- "embla-carousel-react": "^8.6.0",
62
- "html2pdf.js": "^0.12.1",
63
- "lucide-react": "^0.544.0",
64
- "nanoid": "^5.1.5",
65
- "react-icons": "^4.7.1",
66
- "react-lottie": "^1.2.10",
67
- "react-syntax-highlighter": "^15.6.6",
68
- "react-use": "^17.4.0",
69
- "streamdown": "^1.3.0",
70
- "styled-components": "^6.1.19",
71
- "tailwind-merge": "^3.3.1",
72
- "tailwindcss-animate": "^1.0.7",
73
- "tokenlens": "^1.2.1",
74
- "tw-animate-css": "^1.3.8",
75
- "unist-util-visit": "^5.0.0",
76
- "use-stick-to-bottom": "^1.1.1",
77
- "zod": "^4.1.9"
78
- },
79
- "devDependencies": {
80
- "@babel/core": "^7.20.12",
81
- "@vitejs/plugin-react-swc": "^3.0.1",
82
- "babel-loader": "^8.3.0",
83
- "core-js": "^3.27.2",
84
- "eslint": "^8.27.0",
85
- "eslint-config-airbnb": "^19.0.4",
86
- "eslint-config-prettier": "^8.3.0",
87
- "eslint-import-resolver-node": "^0.3.6",
88
- "eslint-plugin-import": "^2.26.0",
89
- "eslint-plugin-jsx-a11y": "^6.6.1",
90
- "eslint-plugin-prettier": "^4.2.1",
91
- "eslint-plugin-react": "7.31.8",
92
- "eslint-plugin-react-hooks": "^4.6.0",
93
- "husky": "^8.0.0",
94
- "lint-staged": "^13.0.3",
95
- "prettier": "latest",
96
- "react": "^18.3.1",
97
- "react-dom": "^18.3.1",
98
- "vite": "^7.1.2",
99
- "vite-plugin-css-injected-by-js": "^3.5.2",
100
- "vite-plugin-singlefile": "^2.3.0"
101
- },
102
- "peerDependencies": {
103
- "react": "^18.3.1",
104
- "react-dom": "^18.3.1"
105
- },
106
- "engines": {
107
- "node": ">=14.0.0"
108
- },
109
- "husky": {
110
- "hooks": {
111
- "pre-commit": "lint-staged"
112
- }
113
- },
114
- "lint-staged": {
115
- "*.{js,jsx}": [
116
- "eslint --fix",
117
- "prettier --write"
118
- ]
119
- },
120
- "packageManager": "npm@8.3.0"
121
- }
1
+ {
2
+ "name": "ai-ebm-assistant-v4",
3
+ "private": false,
4
+ "version": "0.2.20",
5
+ "type": "module",
6
+ "main": "./dist/index.umd.js",
7
+ "module": "./dist/index.es.js",
8
+ "exports": {
9
+ ".": {
10
+ "module": "./dist/index.es.js",
11
+ "import": "./dist/index.es.js",
12
+ "require": "./dist/index.umd.js",
13
+ "default": "./dist/index.umd.js"
14
+ }
15
+ },
16
+ "description": "Functional components build for EBM",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "sideEffects": false,
21
+ "scripts": {
22
+ "start": "npm run dev",
23
+ "dev": "vite --host --open",
24
+ "build": "vite build",
25
+ "build:singlefile": "vite build --config vite.config.singlefile.js",
26
+ "preview": "vite preview",
27
+ "lint": "eslint \"src/**/*.js*\" --fix",
28
+ "clean": " rm -rf node_modules && rm -rf dist",
29
+ "test": "echo \"Error: no test specified\"",
30
+ "prepare": "husky install"
31
+ },
32
+ "dependencies": {
33
+ "@ai-sdk/openai": "^2.0.28",
34
+ "@ai-sdk/react": "^2.0.44",
35
+ "@emotion/react": "^11.14.0",
36
+ "@emotion/styled": "^11.14.1",
37
+ "@fontsource/poppins": "^4.5.10",
38
+ "@mui/icons-material": "^5.15.18",
39
+ "@mui/lab": "^5.0.0-alpha.170",
40
+ "@mui/material": "^5.15.18",
41
+ "@mui/styled-engine-sc": "^7.3.2",
42
+ "@mui/x-date-pickers": "^8.6.0",
43
+ "@radix-ui/react-avatar": "^1.1.10",
44
+ "@radix-ui/react-collapsible": "^1.1.12",
45
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
46
+ "@radix-ui/react-hover-card": "^1.1.15",
47
+ "@radix-ui/react-progress": "^1.1.7",
48
+ "@radix-ui/react-scroll-area": "^1.2.10",
49
+ "@radix-ui/react-select": "^2.2.6",
50
+ "@radix-ui/react-slot": "^1.2.3",
51
+ "@radix-ui/react-tooltip": "^1.2.8",
52
+ "@radix-ui/react-use-controllable-state": "^1.2.2",
53
+ "@tailwindcss/postcss": "^4.1.13",
54
+ "@tailwindcss/vite": "^4.1.13",
55
+ "ahooks": "^3.7.4",
56
+ "ai": "^5.0.44",
57
+ "ai-elements": "^1.1.1",
58
+ "axios": "^1.12.2",
59
+ "class-variance-authority": "^0.7.1",
60
+ "clsx": "^2.1.1",
61
+ "embla-carousel-react": "^8.6.0",
62
+ "html2pdf.js": "^0.12.1",
63
+ "lucide-react": "^0.544.0",
64
+ "nanoid": "^5.1.5",
65
+ "react-icons": "^4.7.1",
66
+ "react-lottie": "^1.2.10",
67
+ "react-syntax-highlighter": "^15.6.6",
68
+ "react-use": "^17.4.0",
69
+ "streamdown": "^1.3.0",
70
+ "styled-components": "^6.1.19",
71
+ "tailwind-merge": "^3.3.1",
72
+ "tailwindcss-animate": "^1.0.7",
73
+ "tokenlens": "^1.2.1",
74
+ "tw-animate-css": "^1.3.8",
75
+ "unist-util-visit": "^5.0.0",
76
+ "use-stick-to-bottom": "^1.1.1",
77
+ "zod": "^4.1.9"
78
+ },
79
+ "devDependencies": {
80
+ "@babel/core": "^7.20.12",
81
+ "@vitejs/plugin-react-swc": "^3.0.1",
82
+ "babel-loader": "^8.3.0",
83
+ "core-js": "^3.27.2",
84
+ "eslint": "^8.27.0",
85
+ "eslint-config-airbnb": "^19.0.4",
86
+ "eslint-config-prettier": "^8.3.0",
87
+ "eslint-import-resolver-node": "^0.3.6",
88
+ "eslint-plugin-import": "^2.26.0",
89
+ "eslint-plugin-jsx-a11y": "^6.6.1",
90
+ "eslint-plugin-prettier": "^4.2.1",
91
+ "eslint-plugin-react": "7.31.8",
92
+ "eslint-plugin-react-hooks": "^4.6.0",
93
+ "husky": "^8.0.0",
94
+ "lint-staged": "^13.0.3",
95
+ "prettier": "latest",
96
+ "react": "^18.3.1",
97
+ "react-dom": "^18.3.1",
98
+ "vite": "^7.1.2",
99
+ "vite-plugin-css-injected-by-js": "^3.5.2",
100
+ "vite-plugin-singlefile": "^2.3.0"
101
+ },
102
+ "peerDependencies": {
103
+ "react": "^18.3.1",
104
+ "react-dom": "^18.3.1"
105
+ },
106
+ "engines": {
107
+ "node": ">=14.0.0"
108
+ },
109
+ "husky": {
110
+ "hooks": {
111
+ "pre-commit": "lint-staged"
112
+ }
113
+ },
114
+ "lint-staged": {
115
+ "*.{js,jsx}": [
116
+ "eslint --fix",
117
+ "prettier --write"
118
+ ]
119
+ },
120
+ "packageManager": "npm@8.3.0"
121
+ }