-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "react-msaview",
"author": "Colin",
"version": "5.0.13",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/JBrowseMSA.git",
"directory": "packages/lib"
},
"exports": {
".": "./src/index.ts"
},
"types": "src/index.ts",
"files": [
"dist",
"bundle",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rimraf dist bundle",
"watch": "pnpm build:esm --watch",
"format": "prettier --write .",
"build:esm": "tsc --project tsconfig.build.json",
"build:bundle": "webpack",
"build": "pnpm clean && pnpm build:esm && pnpm build:bundle",
"statedocs": "rm -rf apidocs && mkdir apidocs && node --experimental-strip-types docgen/generateStateModelDocs.ts",
"poststatedocs": "pnpm format",
"test": "vitest"
},
"peerDependencies": {
"@jbrowse/core": ">=2.0.0",
"@jbrowse/mobx-state-tree": "^5.0.0",
"@mui/icons-material": ">=5.0.0",
"@mui/material": ">=5.0.0",
"mobx": ">=6.0.0",
"mobx-react": ">=7.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts",
"main": "dist/index.js"
},
"devDependencies": {
"@types/node": "^25.6.0"
},
"dependencies": {
"@jbrowse/svgcanvas": "workspace:*",
"@mui/icons-material": "^7.3.10",
"@mui/material": "^7.3.10",
"colord": "^2.9.3",
"flatbush": "^4.5.1",
"msa-parsers": "workspace:*"
}
}