-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.74 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@grunwaldlab/heat-tree",
"version": "0.3.1",
"description": "A self-contained widget for phylogenetic and taxonomic tree visualization with categorical and continuous variables associated with nodes and tips",
"keywords": [
"phylogeny",
"tree",
"taxonomy",
"taxonomic",
"phylogenetic",
"plot"
],
"homepage": "https://github.com/grunwaldlab/heat-tree#readme",
"bugs": {
"url": "https://github.com/grunwaldlab/heat-tree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grunwaldlab/heat-tree.git"
},
"license": "MIT",
"author": "Zachary Stephen Longiaru Foster",
"type": "module",
"main": "./dist/heat-tree.umd.min.js",
"module": "./dist/heat-tree.es.min.js",
"exports": {
".": {
"import": "./dist/heat-tree.es.min.js",
"require": "./dist/heat-tree.umd.min.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"dev": "vite build --watch --mode development",
"build": "vite build",
"prepublishOnly": "npm run build",
"serve": "npx http-server -o demo/index.html",
"docs:dev": "vitepress dev docs",
"docs:build": "node scripts/generate-api-docs.js && vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:generate-api": "node scripts/generate-api-docs.js"
},
"dependencies": {
"d3": "^7.9.0",
"vanilla-picker": "^2.12.3"
},
"devDependencies": {
"@vitest/browser": "4.0.5",
"@vitest/browser-playwright": "4.0.5",
"http-server": "^14.1.1",
"jsdoc-to-markdown": "^9.1.3",
"markdown-it-container": "^4.0.0",
"playwright": "^1.56.1",
"shiki": "^4.0.2",
"terser": "^5.44.1",
"vite": "^7.1.6",
"vitepress": "^1.6.4",
"vitest": "4.0.5"
}
}