@grunwaldlab/heat-tree 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +250 -0
- package/dist/heat-tree.es.js +5083 -0
- package/dist/heat-tree.es.js.map +1 -0
- package/dist/heat-tree.umd.js +20 -0
- package/dist/heat-tree.umd.js.map +1 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grunwaldlab/heat-tree",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A self-contained widget for phylogenetic and taxonomic tree visualization with categorical and continuous variables associated with nodes and tips",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"phylogeny",
|
|
7
|
+
"tree",
|
|
8
|
+
"taxonomy",
|
|
9
|
+
"taxonomic",
|
|
10
|
+
"phylogenetic",
|
|
11
|
+
"plot"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/grunwaldlab/heat-tree#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/grunwaldlab/heat-tree/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/grunwaldlab/heat-tree.git"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "Zachary Stephen Longiaru Foster",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "./dist/heat-tree.umd.js",
|
|
25
|
+
"module": "./dist/heat-tree.es.js",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": "./dist/heat-tree.es.js",
|
|
29
|
+
"require": "./dist/heat-tree.umd.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"test": "vitest",
|
|
37
|
+
"dev": "vite build --watch --mode development",
|
|
38
|
+
"build": "vite build",
|
|
39
|
+
"prepublishOnly": "npm run build",
|
|
40
|
+
"serve": "npx http-server -o demo/index.html"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"d3": "^7.9.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@vitest/browser": "4.0.5",
|
|
47
|
+
"@vitest/browser-playwright": "4.0.5",
|
|
48
|
+
"http-server": "^14.1.1",
|
|
49
|
+
"playwright": "^1.56.1",
|
|
50
|
+
"vite": "^7.1.6",
|
|
51
|
+
"vitest": "4.0.5"
|
|
52
|
+
}
|
|
53
|
+
}
|