@jbrowse/plugin-authentication
Version:
JBrowse 2 Authentication
52 lines • 1.27 kB
JSON
{
"name": "@jbrowse/plugin-authentication",
"version": "4.0.3",
"description": "JBrowse 2 Authentication",
"keywords": [
"jbrowse",
"jbrowse2"
],
"license": "Apache-2.0",
"homepage": "https://jbrowse.org",
"bugs": "https://github.com/GMOD/jbrowse-components/issues",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/jbrowse-components.git",
"directory": "plugins/authentication"
},
"author": "JBrowse Team",
"main": "esm/index.js",
"files": [
"esm"
],
"dependencies": {
"@jbrowse/mobx-state-tree": "^5.5.0",
"@mui/material": "^7.3.6",
"crypto-js": "^4.2.0",
"generic-filehandle2": "^2.0.18",
"mobx": "^6.15.0",
"@jbrowse/core": "^4.0.3"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "pnpm run /^build:/",
"test": "cd ../..; jest --passWithNoTests plugins/authentication",
"prebuild": "pnpm clean",
"build:esm": "tsc -p tsconfig.build.esm.json",
"clean": "rimraf esm *.tsbuildinfo"
},
"types": "esm/index.d.ts",
"exports": {
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js"
}
}
}