-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "masonite-broadcast-client",
"version": "2.0.13",
"main": "dist/mbroadcast.js",
"license": "MIT",
"dependencies": {
"esbuild": "^0.14.41",
"socket.io-client": "^4.5.1"
},
"scripts": {
"build": "esbuild src/app.ts --bundle --outfile=dist/mbroadcast.js --minify --sourcemap",
"copy": "yarn build && cp -r dist ~/Projects/MasonitePackages/masonite-socketio-driver/tests/integrations/storage/public/",
"release": "npm run build && npm version patch && npm publish",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/py-package/masonite-broadcast-client"
},
"keywords": [
"masonite",
"socket.io"
],
"author": "Yubaraj Shrestha <companion.krish@gmail.com> (https://py-package.com)",
"bugs": {
"url": "https://github.com/py-package/masonite-broadcast-client/issues"
},
"homepage": "https://github.com/py-package/masonite-broadcast-client",
"module": "dist/mbroadcast.js",
"devDependencies": {
"eslint": "^8.21.0"
}
}