dees-comms/package.json

57 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-10-06 15:56:00 +00:00
{
2023-08-07 23:06:23 +00:00
"name": "@design.estate/dees-comms",
2024-05-25 00:26:16 +00:00
"version": "1.0.27",
2020-10-06 15:56:00 +00:00
"private": false,
2024-04-20 21:16:50 +00:00
"description": "A communications module for enabling DOM-based messaging and synchronization across browser tabs and workers.",
2020-10-06 15:56:00 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-25 13:17:13 +00:00
"type": "module",
2020-10-06 15:56:00 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-03-25 13:17:13 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
2020-10-06 15:56:00 +00:00
},
"devDependencies": {
2024-05-25 00:21:56 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2024-05-24 23:34:38 +00:00
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.12"
2020-10-06 15:56:00 +00:00
},
"dependencies": {
2024-05-25 00:21:56 +00:00
"@api.global/typedrequest": "^3.0.25",
2024-05-24 23:34:38 +00:00
"@api.global/typedrequest-interfaces": "^3.0.19",
2023-08-07 23:06:23 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-05-25 00:21:56 +00:00
"broadcast-channel": "^7.0.0"
2020-10-06 15:56:00 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
2024-04-20 21:16:50 +00:00
],
"keywords": [
"DOM communication",
"message broadcasting",
"cross-browser",
"cross-tab",
"web workers",
"typed messages",
"TypeScript",
"broadcast channel",
"client-side messaging",
"module"
2020-10-06 15:56:00 +00:00
]
2024-05-24 23:34:39 +00:00
}