smartsocket/package.json

62 lines
1.6 KiB
JSON
Raw Normal View History

2016-08-06 21:27:53 +00:00
{
2019-01-30 09:55:16 +00:00
"name": "@pushrocks/smartsocket",
2022-12-28 12:51:41 +00:00
"version": "2.0.9",
2019-01-30 23:46:42 +00:00
"description": "easy and secure websocket communication",
2020-09-24 18:04:11 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-14 21:40:55 +00:00
"type": "module",
2016-08-06 21:27:53 +00:00
"scripts": {
2020-09-24 18:03:01 +00:00
"test": "(tstest test/)",
2022-03-24 22:29:03 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)"
2016-08-06 21:27:53 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartsocket.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartsocket/issues"
},
"homepage": "https://gitlab.com/pushrocks/smartsocket#README",
"dependencies": {
2022-12-28 12:49:03 +00:00
"@apiglobal/typedrequest-interfaces": "^2.0.1",
2022-03-24 19:17:04 +00:00
"@pushrocks/isohash": "^2.0.0",
2022-01-19 15:37:45 +00:00
"@pushrocks/isounique": "^1.0.5",
2022-08-01 13:00:06 +00:00
"@pushrocks/lik": "^6.0.0",
2022-01-18 16:10:46 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-08-01 13:00:06 +00:00
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartexpress": "^4.0.18",
"@pushrocks/smartjson": "^5.0.1",
"@pushrocks/smartlog": "^3.0.1",
2022-03-14 21:40:55 +00:00
"@pushrocks/smartpromise": "^3.1.7",
2022-12-28 12:49:03 +00:00
"@pushrocks/smartrx": "^3.0.0",
"@pushrocks/smarttime": "^4.0.0",
2022-08-01 13:00:06 +00:00
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
2016-08-07 12:58:20 +00:00
},
"devDependencies": {
2022-08-01 13:00:06 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.3"
},
2019-08-12 16:16:25 +00:00
"private": false,
"files": [
2020-09-24 18:04:11 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-12 16:16:25 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-09-24 18:04:11 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-12 16:16:25 +00:00
]
2022-01-19 06:01:59 +00:00
}