@miiflow/assistant-ui 0.3.2 → 0.3.3
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.
- package/dist/{WelcomeScreen-DAa22X9b.d.ts → WelcomeScreen-D59-MxTZ.d.ts} +4 -0
- package/dist/{chunk-SDMQ6AEH.js → chunk-K7KEMU6S.js} +8 -8
- package/dist/chunk-K7KEMU6S.js.map +1 -0
- package/dist/client/index.js +3 -3
- package/dist/client/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/styled/index.d.ts +1 -1
- package/dist/styled/index.js +1 -1
- package/dist/styles-no-preflight.css +1 -1
- package/dist/styles.css +1 -1
- package/package.json +92 -92
- package/dist/chunk-SDMQ6AEH.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
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
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
2
|
+
"name": "@miiflow/assistant-ui",
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Headless chat UI primitives with TailwindCSS styling",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./primitives": {
|
|
15
|
+
"types": "./dist/primitives/index.d.ts",
|
|
16
|
+
"default": "./dist/primitives/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./styled": {
|
|
19
|
+
"types": "./dist/styled/index.d.ts",
|
|
20
|
+
"default": "./dist/styled/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./client": {
|
|
23
|
+
"types": "./dist/client/index.d.ts",
|
|
24
|
+
"default": "./dist/client/index.js"
|
|
25
|
+
},
|
|
26
|
+
"./styles.css": "./dist/styles.css",
|
|
27
|
+
"./styles-no-preflight.css": "./dist/styles-no-preflight.css"
|
|
28
|
+
},
|
|
29
|
+
"sideEffects": [
|
|
30
|
+
"*.css",
|
|
31
|
+
"**/visualizations/schemas.*"
|
|
32
|
+
],
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md",
|
|
36
|
+
"LICENSE"
|
|
37
|
+
],
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "tsup && yarn build:css && yarn build:css-no-preflight",
|
|
40
|
+
"build:css": "tailwindcss -i ./src/styles/index.css -o ./dist/styles.css --minify",
|
|
41
|
+
"build:css-no-preflight": "tailwindcss -c ./tailwind.no-preflight.config.js -i ./src/styles/no-preflight.css -o ./dist/styles-no-preflight.css --minify",
|
|
42
|
+
"dev": "tsup --watch",
|
|
43
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"check:mui": "node scripts/check-mui-imports.js",
|
|
46
|
+
"check:size": "node scripts/check-bundle-size.js",
|
|
47
|
+
"clean": "rm -rf dist"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": ">=18.0.0",
|
|
51
|
+
"react-dom": ">=18.0.0",
|
|
52
|
+
"zod": ">=3.0.0"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"clsx": "^2.1.1",
|
|
56
|
+
"tailwind-merge": "^2.5.5",
|
|
57
|
+
"react-markdown": "^9.0.1",
|
|
58
|
+
"remark-gfm": "^4.0.0",
|
|
59
|
+
"framer-motion": "^11.15.0",
|
|
60
|
+
"lucide-react": "^0.468.0",
|
|
61
|
+
"recharts": "^2.12.0",
|
|
62
|
+
"react-syntax-highlighter": "^15.5.0"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/react": "^19.0.0",
|
|
66
|
+
"@types/react-dom": "^19.0.0",
|
|
67
|
+
"@types/react-syntax-highlighter": "^15.5.0",
|
|
68
|
+
"autoprefixer": "^10.4.20",
|
|
69
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
70
|
+
"eslint": "^9.17.0",
|
|
71
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
72
|
+
"postcss": "^8.4.49",
|
|
73
|
+
"tailwindcss": "^3.4.17",
|
|
74
|
+
"tsup": "^8.3.5",
|
|
75
|
+
"typescript": "^5.7.2"
|
|
76
|
+
},
|
|
77
|
+
"keywords": [
|
|
78
|
+
"chat",
|
|
79
|
+
"ui",
|
|
80
|
+
"headless",
|
|
81
|
+
"tailwindcss",
|
|
82
|
+
"react",
|
|
83
|
+
"components"
|
|
84
|
+
],
|
|
85
|
+
"license": "MIT",
|
|
86
|
+
"repository": {
|
|
87
|
+
"type": "git",
|
|
88
|
+
"url": "https://github.com/MiiFlow/assistant-ui"
|
|
89
|
+
},
|
|
90
|
+
"homepage": "https://github.com/MiiFlow/assistant-ui#readme",
|
|
91
|
+
"bugs": {
|
|
92
|
+
"url": "https://github.com/MiiFlow/assistant-ui/issues"
|
|
93
|
+
}
|
|
94
94
|
}
|