-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.6 KB
/
package.json
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
{
"name": "vue-paho-mqtt",
"author": "I Kaan Yilmaz <[email protected]> (https://github.com/kaandesu)",
"version": "0.6.5",
"license": "MIT",
"description": "Easy-to-use Paho MQTT client for Vue 3 with centralized subscription management, type support, and built-in optional alert notification library.",
"contributors": [
{
"name": "I Kaan Yilmaz",
"email": "[email protected]"
},
{
"name": "Ege Onder",
"email": "[email protected]"
}
],
"keywords": [
"vue",
"vue3",
"mqtt",
"paho-mqtt",
"mqtt client"
],
"repository": {
"type": "git",
"url": "https://github.com/kaandesu/vue-paho-mqtt.git"
},
"homepage": "https://kaandesu.github.io/vue-paho-mqtt/",
"bugs": {
"url": "https://github.com/kaandesu/vue-paho-mqtt/issues"
},
"files": [
"dist"
],
"main": "./dist/vue-paho-mqtt.umd.cjs",
"module": "./dist/vue-paho-mqtt.js",
"exports": {
".": {
"import": "./dist/vue-paho-mqtt.js",
"require": "./dist/vue-paho-mqtt.umd.cjs",
"types": "./dist/types/types.d.ts"
},
"./style.css": "./dist/style.css"
},
"types": "./dist/types/types.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run test && vite build --mode production && npm run generate:types && npm run build:live-demo",
"build2": "vite build --mode production && npm run generate:types",
"build:live-demo": "vite build --mode live-demo --outDir ./live-demo",
"preview": "vite preview",
"deploy": "gh-pages -d github",
"generate:types": "vue-tsc -p tsconfig-build.json --declaration --emitDeclarationOnly true --outdir ./dist",
"changeset": "changeset",
"test": "vitest run --mode broker",
"test:watch": "vitest --mode broker",
"test:no-broker": "vitest run",
"test:no-broker:watch": "vitest",
"test:coverage": "vitest run --mode broker --coverage"
},
"dependencies": {
"paho-mqtt": "^1.1.0",
"sweetalert2": "^11.7.3",
"vue": "^3.3.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/intro.js": "^5.1.1",
"@types/node": "^18.15.11",
"@types/paho-mqtt": "^1.0.6",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-c8": "^0.30.0",
"eslint": "^8.37.0",
"eslint-plugin-vue": "^9.10.0",
"intro.js": "^7.0.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.30.0",
"vue-eslint-parser": "^9.1.1",
"vue-tsc": "^1.2.0",
"ws": "^8.13.0"
}
}