@serwist/window
Version:
Simplifies communications with Serwist packages running in the service worker
69 lines • 1.56 kB
JSON
{
"name": "@serwist/window",
"version": "9.5.11",
"type": "module",
"description": "Simplifies communications with Serwist packages running in the service worker",
"files": [
"src",
"dist"
],
"keywords": [
"serwist",
"serwistjs",
"service worker",
"sw",
"window",
"message",
"postMessage"
],
"author": "Google's Web DevRel Team",
"contributors": [
"Serwist <ducanh2912.rusty@gmail.com> (https://serwist.pages.dev/)"
],
"license": "MIT",
"repository": "https://github.com/serwist/serwist",
"bugs": "https://github.com/serwist/serwist/issues",
"homepage": "https://serwist.pages.dev",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"typesVersions": {
"*": {
"internal": [
"./dist/index.internal.d.mts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./internal": {
"types": "./dist/index.internal.d.mts",
"default": "./dist/index.internal.mjs"
},
"./package.json": "./package.json"
},
"dependencies": {
"@types/trusted-types": "2.0.7",
"serwist": "9.5.11"
},
"devDependencies": {
"tsdown": "0.21.10",
"typescript": "6.0.3"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"scripts": {
"build": "rimraf dist && NODE_ENV=production tsdown",
"dev": "tsdown --watch",
"lint": "biome lint ./src",
"typecheck": "tsc"
}
}