-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.07 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.07 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": "1.6.0",
"license": "MIT",
"name": "jbrowse-plugin-mafviewer",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/jbrowse-plugin-mafviewer.git"
},
"keywords": [
"jbrowse",
"jbrowse2"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"start": "node esbuild.mjs --watch",
"test": "vitest",
"test:e2e": "vitest run test/",
"pretest:e2e": "test -d .test-jbrowse-nightly || jbrowse create .test-jbrowse-nightly --nightly",
"bench": "vitest bench",
"bench:memory": "node --expose-gc --experimental-strip-types src/BigMafAdapter/memoryBenchmark.ts",
"format": "prettier --write .",
"prebuild": "yarn clean",
"build": "tsc && NODE_ENV=production node esbuild.mjs",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"prepublishOnly": "node -e \"console.log('export const version = \\'' + require('./package.json').version + '\\'')\" > src/version.ts && git add -A src && git diff --cached --quiet || git commit -m '[skip ci] Bump version.ts'",
"prepack": "yarn build",
"preversion": "yarn lint",
"version": "node -e \"console.log('export const version = \\'' + require('./package.json').version + '\\'')\" > src/version.ts && git add src/version.ts",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@emotion/react": "^11.14.0",
"@eslint/js": "^8.57.1",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@gmod/bbi": "^8.1.2",
"@jbrowse/cli": "^4.1.15",
"@jbrowse/core": "^4.1.15",
"@jbrowse/mobx-state-tree": "^5.6.0",
"@jbrowse/plugin-data-management": "^4.1.15",
"@jbrowse/plugin-linear-genome-view": "^4.1.15",
"@mui/material": "^7.3.10",
"@mui/system": "^7.3.10",
"@mui/x-data-grid": "^8.28.2",
"@types/d3-array": "^3.2.2",
"@types/d3-hierarchy": "^3.1.7",
"@types/jest-image-snapshot": "^6.4.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"chalk": "^5.6.2",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "^64.0.0",
"jest-image-snapshot": "^6.5.2",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"prettier": "^3.8.2",
"pretty-bytes": "^7.1.0",
"puppeteer": "^24.40.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"serve": "^14.2.6",
"tss-react": "^4.9.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@gmod/bgzf-filehandle": "^6.0.18",
"@mui/icons-material": "^7.3.10",
"abortable-promise-cache": "^1.5.0",
"buffer": "^6.0.3",
"d3-array": "^3.2.4",
"d3-hierarchy": "^3.1.2",
"fast-deep-equal": "^3.1.3",
"flatbush": "^4.5.1",
"generic-filehandle2": "^2.1.4"
}
}