Files
hereconnect/services/message-delivery-method-web-push/package.json
T

56 lines
1.4 KiB
JSON
Raw Normal View History

2024-11-21 16:11:23 +02:00
{
"name": "@hereconnect/service-message-delivery-method-web-push",
2024-11-21 16:11:23 +02:00
"version": "1.0.0",
"description": "",
2024-12-10 13:21:38 +02:00
"main": "dist/service.ts",
2024-11-21 16:11:23 +02:00
"type": "module",
"license": "@hereconnect/license",
"private": true,
"engines": {
"node": ">=v20.10.0",
"pnpm": ">=8.15.0"
2024-11-21 16:11:23 +02:00
},
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
2024-12-03 11:11:44 +02:00
"files": [
"dist/**/*"
],
2024-11-21 16:11:23 +02:00
"bugs": "",
"keywords": [],
"author": {
"name": "",
"email": "",
"url": ""
},
"contributors": [],
"scripts": {
2024-12-10 13:21:38 +02:00
"start": "node dist/service.js",
"build": "tsc",
2024-12-06 11:15:32 +02:00
"lint": "tsc --noEmit",
2024-12-02 08:50:25 +02:00
"generate-keys": "node src/generate-keys.ts",
2024-11-27 15:57:11 +02:00
"test-send-notification": "node ./src/test-send-notification.js",
"test-send-notification-cancel": "node ./src/test-send-notification-cancel.js"
2024-11-21 16:11:23 +02:00
},
"dependencies": {
"@hereconnect/couchdb-changes-stream": "workspace:^",
2024-12-10 13:21:38 +02:00
"@hereconnect/lib-service-health-checkserver": "workspace:^",
"@hereconnect/lib-service-seq-tracker": "workspace:^",
"pouchdb-adapter-http": "^9.0.0",
"pouchdb-core": "^9.0.0",
2024-11-27 15:57:11 +02:00
"pouchdb-find": "^9.0.0",
2024-11-21 16:11:23 +02:00
"web-push": "^3.6.7"
},
"devDependencies": {
2024-12-12 20:05:22 +02:00
"@hereconnect/types": "workspace:^",
"@types/node": "^20.17.6",
"@types/pouchdb-adapter-http": "^6.1.6",
"@types/pouchdb-core": "^7.0.15",
"@types/pouchdb-find": "^7.3.3",
2024-12-03 11:11:44 +02:00
"@types/web-push": "^3.6.4",
"typescript": "~5.6.3"
2024-11-21 16:11:23 +02:00
}
}