-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "nuxt3-socket.io",
"version": "0.4.2",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/wobsoriano/nuxt3-socket.io#readme",
"repository": {
"type": "git",
"url": "https://github.com/wobsoriano/nuxt3-socket.io.git"
},
"bugs": "https://github.com/wobsoriano/nuxt3-socket.io/issues",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./helpers": {
"types": "./dist/runtime/helpers.d.ts",
"import": "./dist/runtime/helpers.js"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"helpers.d.ts"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint .",
"prepublishOnly": "pnpm prepack",
"release": "bumpp && npm publish"
},
"dependencies": {
"@nuxt/kit": "^3.14.159",
"fast-glob": "^3.3.2",
"pathe": "^1.1.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@nuxt/devtools": "^1.6.0",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.159",
"bumpp": "^9.8.1",
"eslint": "^9.14.0",
"nuxt": "^3.14.159"
}
}