@parsifal-m/plugin-dev-quotes-homepage
Version:
A backstage plugin to render a developer themed quote
95 lines (94 loc) • 2.48 kB
JSON
{
"name": "@parsifal-m/plugin-dev-quotes-homepage",
"version": "3.0.8",
"node": "16 || 18",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"description": "A backstage plugin to render a developer themed quote",
"keywords": [
"backstage-plugin",
"backstage",
"dev-quotes",
"quotes",
"plugin"
],
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "dev-quotes-homepage",
"pluginPackages": [
"@parsifal-m/plugin-dev-quotes-homepage"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Parsifal-M/backstage-dev-quotes",
"directory": "."
},
"sideEffects": false,
"scripts": {
"tsc": "tsc",
"test:all": "backstage-cli repo test --coverage",
"lint:all": "backstage-cli repo lint",
"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 && pinst --disable",
"postpack": "backstage-cli package postpack && pinst --enable",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"_postinstall": "husky install",
"fix": "backstage-cli repo fix --publish"
},
"dependencies": {
"@backstage/core-plugin-api": "^1.10.6",
"@material-ui/core": "^4.12.2"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.32.0",
"@backstage/dev-utils": "^1.1.9",
"@spotify/prettier-config": "^15.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"pinst": "^3.0.0",
"prettier": "^2.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^6.16.0",
"typescript": "~5.1.0"
},
"prettier": "@spotify/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --check ."
],
"*.{json,md}": [
"prettier --check ."
]
},
"files": [
"dist"
],
"packageManager": "yarn@4.5.1",
"typesVersions": {
"*": {
"package.json": [
"package.json"
]
}
},
"module": "./dist/index.esm.js"
}