-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "@dreamonkey/vue-signalr",
"version": "1.2.0",
"description": "SignalR plugin for Vue 3",
"repository": {
"type": "git",
"url": "git+https://github.com/dreamonkey/vue-signalr.git"
},
"homepage": "https://github.com/dreamonkey/vue-signalr/blob/master/README.md",
"bugs": "https://github.com/dreamonkey/vue-signalr/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./ --fix --report-unused-disable-directives",
"format": "prettier --write \"**/*.{json,md,graphql,vue,js,ts}\" --ignore-path .gitignore",
"build": "rimraf dist && tsc --declaration --project tsconfig.build.json",
"deploy": "pnpm build && pnpm publish --tag latest"
},
"keywords": [
"vue",
"signalr",
"websocket"
],
"author": "Paolo Caleffi <[email protected]> (https://github.com/IlCallo)",
"license": "MIT",
"peerDependencies": {
"@microsoft/signalr": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/types": "^7.25.6",
"@microsoft/signalr": "^8.0.7",
"@types/node": "^20.0.0",
"eslint": "^8.57.0",
"eslint-config-coralloy": "^0.4.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "~5.5.0",
"vue": "^3.5.4"
},
"publishConfig": {
"access": "public"
}
}