-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "laravel-wave",
"version": "0.8.1",
"description": "Server-sent event driver for Laravel Echo and broadcasting system.",
"keywords": [
"laravel",
"echo",
"wave",
"sse",
"event source",
"broadcasting",
"real-time",
"live-update",
"server-sent"
],
"homepage": "https://github.com/qruto/laravel-wave-client",
"repository": {
"type": "git",
"url": "https://github.com/qruto/laravel-wave-client"
},
"scripts": {
"build": "npm run compile && npm run declarations",
"compile": "./node_modules/.bin/rollup -c",
"watch": "./node_modules/.bin/rollup --config --watch",
"declarations": "./node_modules/.bin/tsc --emitDeclarationOnly",
"lint": "eslint --ext .js,.ts ./src",
"release": "npm run build && npm run lint && npm run test && git push --follow-tags && npm publish",
"test": "jest"
},
"author": "slavarazum",
"main": "dist/wave.common.js",
"module": "dist/wave.js",
"types": "dist/wave.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE.md"
],
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-proposal-export-namespace-from": "^7.17.12",
"@babel/plugin-proposal-function-sent": "^7.18.2",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^28.1.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"jest": "^28.1.0",
"node-ray": "^1.18.0",
"rollup": "^2.75.5",
"rollup-plugin-typescript2": "^0.32.0",
"ts-jest": "^28.0.4",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"laravel-echo": "^1.15.3"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"dependencies": {
"@qruto/fetch-event-source": "^2.0.2"
}
}