-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.7 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
67
68
69
70
71
{
"name": "vue-native-websocket",
"version": "3.0.0",
"description": "Native WebSocket plugin and composable for Vue 3",
"type": "module",
"main": "./dist/vue-native-websocket.cjs",
"module": "./dist/vue-native-websocket.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/vue-native-websocket.umd.cjs",
"jsdelivr": "./dist/vue-native-websocket.umd.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vue-native-websocket.mjs",
"require": "./dist/vue-native-websocket.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json",
"lint": "eslint .",
"prepack": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathantsoi/vue-native-websocket.git"
},
"keywords": [
"vue",
"vue3",
"websocket",
"socket",
"realtime",
"composition-api",
"pinia",
"vuex"
],
"author": "Nathan Tsoi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathantsoi/vue-native-websocket/issues"
},
"homepage": "https://github.com/nathantsoi/vue-native-websocket#readme",
"peerDependencies": {
"vue": "^3.5.0"
},
"overrides": {
"flatted": "^3.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"globals": "^16.5.0",
"happy-dom": "^20.10.3",
"mock-socket": "^9.3.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^8.0.16",
"vitest": "^4.1.9",
"vue": "^3.5.38"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}