forked from nathandunn/GenomeFeatureComponent
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1019 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
41
{
"name": "agr_genomefeaturecomponent",
"version": "0.3.24",
"type": "module",
"description": "Provides SVG View for Genome Features rendered with the Apollo Track Web Service via JBrowse",
"main": "dist/index.js",
"license": "MIT",
"repository": "https://github.com/GMOD/GenomeFeatureComponent",
"keywords": [
"genome feature viewer",
"genomics",
"genes",
"transcripts"
],
"files": [
"dist",
"src"
],
"scripts": {
"format": "prettier --write .",
"clean": "rm -rf dist/",
"dev": "vite",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"build": "vite build",
"prebuild": "yarn run clean",
"preview": "vite preview"
},
"devDependencies": {
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.14.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.0"
},
"dependencies": {
"@gmod/nclist": "^2.0.0",
"d3": "^7.9.0",
"d3-tip": "^0.9.1"
}
}