-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
78 lines (78 loc) · 2.38 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
{
"name": "laravel-echo",
"version": "2.0.0",
"description": "Laravel Echo library for beautiful Pusher and Socket.IO integration",
"keywords": [
"laravel",
"pusher",
"ably"
],
"homepage": "https://github.com/laravel/echo",
"repository": {
"type": "git",
"url": "https://github.com/laravel/echo"
},
"license": "MIT",
"author": {
"name": "Taylor Otwell"
},
"type": "module",
"main": "dist/echo.common.js",
"module": "dist/echo.js",
"types": "dist/echo.d.ts",
"scripts": {
"build": "npm run compile && npm run declarations",
"compile": "rollup -c",
"declarations": "tsc --emitDeclarationOnly",
"lint": "eslint --config eslint.config.mjs",
"prepublish": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-function-sent": "^7.25.9",
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/preset-env": "^7.26.7",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"pusher-js": "^8.0",
"rollup": "^3.0.0",
"socket.io-client": "^4.0",
"standard-version": "^9.3.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.0"
},
"typesVersions": {
"*": {
"socket.io-client": [],
"pusher-js": []
}
},
"engines": {
"node": ">=20"
},
"exports": {
".": {
"import": "./dist/echo.js",
"require": "./dist/echo.common.js",
"types": "./dist/echo.d.ts"
},
"./iife": "./dist/echo.iife.js"
},
"overrides": {
"glob": "^9.0.0"
}
}