react-phylogeny-tree-gl
Version:
React integration of phylocanvas.gl. Component and hook for phylogenetic tree visualistion.
92 lines (91 loc) • 2.32 kB
JSON
{
"name": "react-phylogeny-tree-gl",
"version": "1.0.0-beta",
"description": "React integration of phylocanvas.gl. Component and hook for phylogenetic tree visualistion.",
"author": "Martin Koliba",
"license": "MIT",
"keywords": [
"phylocanvas.gl",
"phylocanvas",
"phylogeny",
"newick",
"phylogenetic",
"phylo",
"react-component",
"biojs",
"phylogenetic tree",
"webgl"
],
"main": "lib/index.js",
"homepage": "https://github.com/mkoliba/react-phylogeny-tree-gl",
"repository": {
"type": "git",
"url": "https://github.com/mkoliba/react-phylogeny-tree-gl.git"
},
"exports": {
".": "./lib/index.js",
"./plugins": "./lib/plugins",
"./hooks": "./lib/hooks",
"./styles.css": "./lib/styles.css",
"./utils": "./lib/utils.js",
"./types/": "./lib/types/"
},
"types": "lib",
"typesVersions": {
"*": {
"plugins": [
"lib/plugins"
],
"hooks": [
"lib/hooks"
],
"utils": [
"lib/utils.d.ts"
],
"types": [
"lib/types"
]
}
},
"files": [
"lib",
"lib/css",
"README.md"
],
"scripts": {
"clean": "rimraf lib/",
"copy-files": "copyfiles -f src/*.css lib/",
"build": "yarn clean && tsc && yarn copy-files",
"prepare": "yarn format && yarn build",
"format": "prettier --write src && eslint src --ext .js,.jsx,.ts,.tsx",
"watch": "tsc-watch --onSuccess 'yarn copy-files'"
},
"dependencies": {
"@phylocanvas/phylocanvas.gl": "1.36.0",
"deck.gl": "^8.3.10"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"copyfiles": "^2.4.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"tsc-watch": "^4.5.0",
"typescript": "^4.5.5"
}
}