-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "@gui-chat-plugin/google-map",
"version": "0.3.1",
"type": "module",
"description": "Google Map location plugin for GUI Chat applications",
"author": "receptron",
"license": "MIT",
"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"
},
"./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"
},
"dependencies": {
"gui-chat-protocol": "^0.0.3"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@tailwindcss/vite": "^4.1.0",
"@types/google.maps": "^3.58.1",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-vue": "^6.0.0",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^10.0.0",
"globals": "^17.1.0",
"openai": "^6.16.0",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0",
"vite": "^7.0.0",
"vue": "^3.5.0",
"vue-eslint-parser": "^10.0.0",
"vue-tsc": "^3.2.3"
},
"peerDependencies": {
"vue": "^3.5.0"
}
}