-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.48 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@gui-chat-plugin/mindmap",
"version": "2.0.0",
"description": "Interactive mind map plugin for visual brainstorming",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core.js",
"require": "./dist/core.cjs"
},
"./vue": {
"types": "./dist/vue/index.d.ts",
"import": "./dist/vue.js",
"require": "./dist/vue.cjs"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react.js",
"require": "./dist/react.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"dev:react": "vite --config vite.config.react.ts",
"prepare": "yarn build",
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly && tsc -p tsconfig.react.json --emitDeclarationOnly",
"typecheck": "vue-tsc --noEmit && tsc -p tsconfig.react.json --noEmit",
"lint": "eslint src demo",
"test": "tsx --test tests/*.test.ts"
},
"peerDependencies": {
"gui-chat-protocol": "^2.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vue": "^3.5.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^6.0.4",
"@vitejs/plugin-vue": "^6.0.8",
"eslint": "^10.8.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.8.0",
"gui-chat-protocol": "^2.0.0",
"openai": "^6.48.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.4",
"typescript": "~6.0.3",
"vite": "^8.1.5",
"vue": "^3.5.40",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.8"
},
"keywords": [
"guichat",
"plugin",
"mindmap",
"brainstorming",
"visualization"
],
"license": "MIT",
"dependencies": {
"jspdf": "^4.0.0"
}
}