Files
backstage/plugins/notifications-node/package.json
T
github-actions[bot] 68af69b2b8 Version Packages (next)
2025-03-11 16:50:56 +00:00

55 lines
1.6 KiB
JSON

{
"name": "@backstage/plugin-notifications-node",
"version": "0.2.13-next.2",
"description": "Node.js library for the notifications plugin",
"backstage": {
"role": "node-library",
"pluginId": "notifications",
"pluginPackages": [
"@backstage/plugin-notifications",
"@backstage/plugin-notifications-backend",
"@backstage/plugin-notifications-common",
"@backstage/plugin-notifications-node"
]
},
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/notifications-node"
},
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"dist"
],
"scripts": {
"build": "backstage-cli package build",
"clean": "backstage-cli package clean",
"lint": "backstage-cli package lint",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"test": "backstage-cli package test"
},
"dependencies": {
"@backstage/backend-plugin-api": "workspace:^",
"@backstage/catalog-client": "workspace:^",
"@backstage/catalog-model": "workspace:^",
"@backstage/plugin-notifications-common": "workspace:^",
"@backstage/plugin-signals-node": "workspace:^",
"knex": "^3.0.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@backstage/backend-test-utils": "workspace:^",
"@backstage/cli": "workspace:^",
"@backstage/test-utils": "workspace:^",
"msw": "^1.0.0"
}
}