-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@laravel/echo-react",
"version": "2.3.4",
"description": "React hooks for seamless integration with Laravel Echo.",
"keywords": [
"laravel",
"pusher",
"ably",
"react"
],
"homepage": "https://github.com/laravel/echo/tree/2.x/packages/react",
"repository": {
"type": "git",
"url": "https://github.com/laravel/echo"
},
"license": "MIT",
"author": {
"name": "Taylor Otwell"
},
"type": "module",
"main": "dist/index.common.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build && FORMAT=iife vite build",
"dev": "vite dev",
"lint": "eslint --config eslint.config.mjs \"src/**/*.ts\"",
"prepublish": "pnpm run build",
"release": "vitest --run && pnpm publish --no-git-checks",
"test": "vitest",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.5.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^14.3.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/node": "^20.0.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^26.1.0",
"laravel-echo": "workspace:^",
"prettier": "^3.5.3",
"pusher-js": "^8.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"socket.io-client": "^4.0",
"typescript": "^5.7.0",
"vite": "^6.4.2",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.2"
},
"peerDependencies": {
"pusher-js": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"socket.io-client": "*"
},
"peerDependenciesMeta": {
"pusher-js": {
"optional": true
},
"socket.io-client": {
"optional": true
}
},
"typesVersions": {
"*": {
"socket.io-client": [],
"pusher-js": []
}
},
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.common.js"
}
},
"overrides": {
"glob": "^9.0.0"
}
}