39 lines
972 B
JSON
39 lines
972 B
JSON
{
|
|
"name": "grafana-to-ntfy",
|
|
"version": "1.0.0",
|
|
"description": "Bridge between Grafana and Ntfy",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node-dev src/index.ts",
|
|
"build": "tsc",
|
|
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@gitlab.com/Saibe1111/grafana-to-ntfy.git"
|
|
},
|
|
"keywords": [
|
|
"Grafana",
|
|
"Ntfy"
|
|
],
|
|
"author": "Sébastien C.",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://gitlab.com/Saibe1111/grafana-to-ntfy/issues"
|
|
},
|
|
"homepage": "https://gitlab.com/Saibe1111/grafana-to-ntfy#readme",
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/node-fetch": "^2.6.4",
|
|
"prettier": "^2.8.8",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"node-fetch": "^3.3.1",
|
|
"tslib": "^2.6.0"
|
|
}
|
|
}
|