@grunwaldlab/heat-tree 0.2.0 → 0.3.1
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 +2 -0
- package/dist/heat-tree.es.min.js +510 -310
- package/dist/heat-tree.es.min.js.map +1 -1
- package/dist/heat-tree.iife.min.js +2 -2
- package/dist/heat-tree.iife.min.js.map +1 -1
- package/dist/heat-tree.umd.min.js +2 -2
- package/dist/heat-tree.umd.min.js.map +1 -1
- package/package.json +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grunwaldlab/heat-tree",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A self-contained widget for phylogenetic and taxonomic tree visualization with categorical and continuous variables associated with nodes and tips",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"phylogeny",
|
|
@@ -37,7 +37,11 @@
|
|
|
37
37
|
"dev": "vite build --watch --mode development",
|
|
38
38
|
"build": "vite build",
|
|
39
39
|
"prepublishOnly": "npm run build",
|
|
40
|
-
"serve": "npx http-server -o demo/index.html"
|
|
40
|
+
"serve": "npx http-server -o demo/index.html",
|
|
41
|
+
"docs:dev": "vitepress dev docs",
|
|
42
|
+
"docs:build": "node scripts/generate-api-docs.js && vitepress build docs",
|
|
43
|
+
"docs:preview": "vitepress preview docs",
|
|
44
|
+
"docs:generate-api": "node scripts/generate-api-docs.js"
|
|
41
45
|
},
|
|
42
46
|
"dependencies": {
|
|
43
47
|
"d3": "^7.9.0",
|
|
@@ -47,9 +51,13 @@
|
|
|
47
51
|
"@vitest/browser": "4.0.5",
|
|
48
52
|
"@vitest/browser-playwright": "4.0.5",
|
|
49
53
|
"http-server": "^14.1.1",
|
|
54
|
+
"jsdoc-to-markdown": "^9.1.3",
|
|
55
|
+
"markdown-it-container": "^4.0.0",
|
|
50
56
|
"playwright": "^1.56.1",
|
|
57
|
+
"shiki": "^4.0.2",
|
|
51
58
|
"terser": "^5.44.1",
|
|
52
59
|
"vite": "^7.1.6",
|
|
60
|
+
"vitepress": "^1.6.4",
|
|
53
61
|
"vitest": "4.0.5"
|
|
54
62
|
}
|
|
55
63
|
}
|