-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 943 Bytes
/
package.json
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
{
"name": "hyphy-eye",
"version": "0.1.1",
"type": "module",
"files": [
"dist/hyphy-eye.js",
"dist/hyphy-eye.js.map",
"dist/hyphy-eye.d.ts"
],
"main": "dist/hyphy-eye.js",
"types": "dist/hyphy-eye.d.ts",
"scripts": {
"clean": "rimraf src/.observablehq/cache",
"clean-npm": "rimraf dist/*",
"bundle": "rollup --config",
"build": "observable build",
"dev": "observable preview",
"deploy": "observable deploy",
"observable": "observable",
"build-npm": "run-s clean-npm bundle"
},
"dependencies": {
"@observablehq/framework": "^1.13.0",
"d3": "^7.9.0",
"htl": "^0.3.1",
"lodash-es": "^4.17.21",
"parse-svg-path": "^0.1.2",
"phylotree": "^2.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
}
}