smartsocket/package.json

65 lines
1.7 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",
2023-03-29 17:02:35 +00:00
"version": "2.0.19",
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-12-28 12:52:16 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)",
"buildDocs": "tsdoc"
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",
2023-02-07 11:32:48 +00:00
"@pushrocks/lik": "^6.0.2",
2022-01-18 16:10:46 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2023-02-07 11:32:48 +00:00
"@pushrocks/smartenv": "^5.0.5",
2023-03-29 14:07:54 +00:00
"@pushrocks/smartexpress": "^4.0.34",
2022-08-01 13:00:06 +00:00
"@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",
2023-02-07 11:32:48 +00:00
"@pushrocks/smarttime": "^4.0.1",
"engine.io": "6.3.1",
"socket.io": "4.5.4",
"socket.io-client": "4.5.4"
2016-08-07 12:58:20 +00:00
},
"devDependencies": {
2022-08-01 13:00:06 +00:00
"@gitzone/tsbuild": "^2.1.63",
2022-12-28 13:02:14 +00:00
"@gitzone/tsbundle": "^2.0.7",
2022-08-01 13:00:06 +00:00
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
2023-03-29 14:07:54 +00:00
"@types/node": "^18.15.11"
},
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-12-28 12:52:17 +00:00
}