-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.01 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
93
94
95
{
"name": "jbrowse-plugin-graphgenomeviewer",
"version": "0.0.1",
"description": "JBrowse 2 graph genome (pangenome) view: rGFA reference-anchored layouts plus the Bandage force-directed engine",
"license": "GPL-3.0-or-later",
"keywords": [
"jbrowse",
"jbrowse2",
"pangenome",
"graph",
"gfa",
"bandage"
],
"type": "module",
"main": "dist/jbrowse-plugin-graphgenomeviewer.esm.js",
"module": "dist/jbrowse-plugin-graphgenomeviewer.esm.js",
"exports": "./dist/jbrowse-plugin-graphgenomeviewer.esm.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf dist",
"format": "pnpm prettier --write .",
"prebuild": "pnpm clean",
"dev": "pnpm start",
"start": "node esbuild.mjs --watch",
"build": "NODE_ENV=production node esbuild.mjs",
"build:wasm": "./scripts/build-wasm.sh",
"test:wasm": "node scripts/smoke-wasm.mjs",
"build:bundle": "NODE_ENV=production node esbuild.mjs",
"betabuild": "bash scripts/betabuild.sh",
"typecheck": "node scripts/typecheck.mjs",
"typecheck:all": "tsc",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"prepack": "pnpm build",
"preversion": "pnpm lint",
"version": "node scripts/version.mjs",
"postversion": "git push --follow-tags"
},
"private": true,
"dependencies": {
"@gmod/tabix": "^3.4.2",
"@jbrowse/core": "link:../../jbrowse-components/packages/core",
"@jbrowse/mobx-state-tree": "^5.6.0",
"@jbrowse/render-core": "link:../../jbrowse-components/packages/render-core"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^10.0.1",
"@fal-works/esbuild-plugin-global-externals": "^2.1.2",
"@jbrowse/cli": "^4.2.1",
"@jbrowse/plugin-canvas": "link:../../jbrowse-components/plugins/canvas",
"@jbrowse/plugin-linear-genome-view": "link:../../jbrowse-components/plugins/linear-genome-view",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@mui/system": "^9.2.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"prettier": "^3.8.3",
"pretty-bytes": "^7.1.0",
"puppeteer": "^25.3.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"serve": "^14.2.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.10"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"engines": {
"node": ">=20"
}
}