-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "vin-socket.server",
"version": "1.1.1",
"main": "./dist/index.js",
"description": "This application maintains the light weight of transmision and performance over websocket connection",
"license": "ISC",
"scripts": {
"clean": "rm -rf ./dist",
"types": "npx tspc",
"bundle": "npx webpack --config ./config/webpack.config.js",
"build": "npm run clean; npm run types; npm run bundle"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/petatemarvin26/vin-socket.server.git"
},
"keywords": [
"ws"
],
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"src"
],
"author": {
"email": "petatemarvin26@gmail.com",
"name": "Marvin Petate",
"url": "https://marvin-petate.web.app/"
},
"bugs": {
"url": "https://github.com/petatemarvin26/vin-socket.server/issues"
},
"homepage": "https://github.com/petatemarvin26/vin-socket.server#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/object-hash": "^3.0.2",
"@types/webpack": "^5.28.1",
"@types/ws": "^8.5.4",
"babel-loader": "^9.1.3",
"ts-patch": "^3.2.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.5.2",
"typescript-transform-paths": "^3.4.7",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"object-hash": "^3.0.0",
"ws": "^8.13.0"
}
}