-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "@gui-chat-plugin/set-image-style",
"version": "2.0.0",
"description": "Set image style modifier 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",
"test": "tsx --test tests/*.test.ts"
},
"peerDependencies": {
"gui-chat-protocol": "^2.0.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-vue": "^6.0.8",
"eslint": "^10.8.0",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.8.0",
"gui-chat-protocol": "^2.0.0",
"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",
"image",
"style"
],
"license": "MIT"
}