-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.52 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "laravel-echo-nuxt-module",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"packageManager": "[email protected]",
"sideEffects": false,
"description": "Laravel Echo module for Nuxt 3",
"engines": {
"node": ">=16",
"pnpm": ">=8.6"
},
"keywords": [
"nuxt 3",
"nuxt",
"module",
"nuxt-module",
"laravel-echo",
"echo",
"laravel"
],
"author": {
"name": "Damilare Anjorin",
"url": "https://github.com/dammy001"
},
"homepage": "https://github.com/dammy001/laravel-echo-nuxt-module#readme",
"bugs": {
"url": "https://github.com/dammy001/laravel-echo-nuxt-module/issues"
},
"repository": {
"type": "git",
"url": "git+https://https://github.com/dammy001/laravel-echo-nuxt-module.git"
},
"exports": {
".": {
"require": "./module.cjs",
"import": "./dist/module.mjs"
},
"./module": {
"require": "./module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"*.cjs"
],
"scripts": {
"build": "nuxt-build-module",
"stub": "nuxt-build-module --stub",
"dev": "nuxi dev playground",
"play:build": "nuxi generate playground",
"play:preview": "nuxi preview playground",
"prepublishOnly": "npm run build",
"format": "prettier --write --cache \"./**/*.{vue,js,ts,md}\"",
"format:check": "prettier --check \"./**/*.{vue,js,ts,md}\"",
"lint": "eslint --cache \"./**/*.{vue,js,ts}\"",
"lint:fix": "eslint --cache --fix \"./**/*.{vue,js,ts}\"",
"release": "bumpp",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.6.0",
"@vueuse/nuxt": "^10.2.0",
"defu": "^6.1.2"
},
"peerDependencies": {
"laravel-echo": ">=1.15.1",
"pusher-js": ">=8",
"socket.io": ">=4"
},
"peerDependenciesMeta": {
"laravel-echo": {
"optional": false
},
"pusher-js": {
"optional": true
},
"socket.io": {
"optional": true
}
},
"devDependencies": {
"@damilaredev/eslint-config": "^0.0.19",
"@nuxt/module-builder": "^0.5.0",
"@nuxt/schema": "^3.6.0",
"@types/node": "^20.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"laravel-echo": "^1.15.1",
"nuxt": "^3.6.0",
"prettier": "^2.8.8",
"pusher-js": "^8.2.0",
"socket.io": "^4.7.0",
"typescript": "^5.1.3",
"unbuild": "^2.0.0",
"vite": "^5.0.0"
},
"publishConfig": {
"access": "public"
}
}