-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
{
"name": "@gui-chat-plugin/html",
"version": "0.4.0",
"description": "Render HTML plugin for GUIChat",
"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"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint src demo"
},
"peerDependencies": {
"gui-chat-protocol": "^0.3.3",
"vue": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitejs/plugin-vue": "^6.0.5",
"eslint": "^10.3.0",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"gui-chat-protocol": "^0.3.3",
"tailwindcss": "^4.2.4",
"typescript": "~6.0.3",
"vite": "^8.0.11",
"vue": "^3.5.34",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.8"
},
"keywords": [
"guichat",
"plugin",
"html",
"render"
],
"license": "MIT"
}