047beadd9d
next try after #18153 without any external dependencies and only supporting websocket. missing tests and necessary documentation but will work on those after initial comments if this would be proper way to go forward. already planning for the notification plugins on top of this. Signed-off-by: Heikki Hellgren <heikki.hellgren@op.fi>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@backstage/plugin-signals-react",
|
|
"description": "Web library for the signals plugin",
|
|
"version": "0.0.0",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"license": "Apache-2.0",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"backstage": {
|
|
"role": "web-library"
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"start": "backstage-cli package start",
|
|
"build": "backstage-cli package build",
|
|
"lint": "backstage-cli package lint",
|
|
"test": "backstage-cli package test",
|
|
"clean": "backstage-cli package clean",
|
|
"prepack": "backstage-cli package prepack",
|
|
"postpack": "backstage-cli package postpack"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/core-plugin-api": "workspace:^",
|
|
"@backstage/types": "workspace:^",
|
|
"@material-ui/core": "^4.9.13"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.13.1 || ^17.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "workspace:^",
|
|
"@backstage/test-utils": "workspace:^",
|
|
"@testing-library/jest-dom": "^5.10.1",
|
|
"@testing-library/react": "^12.1.3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|