@weng-lab/genomebrowser 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +124 -124
- package/dist/components/context/domainContext.d.ts +5 -6
- package/dist/components/context/providers.d.ts +2 -1
- package/dist/components/tracks/transcripts/types.d.ts +0 -2
- package/dist/components/tracks/types.d.ts +5 -5
- package/dist/gbc.cjs.js +32 -32
- package/dist/gbc.es.js +1712 -1709
- package/dist/gbc.umd.js +32 -32
- package/package.json +92 -92
package/package.json
CHANGED
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@weng-lab/genomebrowser",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/weng-lab/genomebrowser.git"
|
|
8
|
-
},
|
|
9
|
-
"description": "UMMS Genome Browser",
|
|
10
|
-
"type": "module",
|
|
11
|
-
"files": [
|
|
12
|
-
"dist"
|
|
13
|
-
],
|
|
14
|
-
"main": "./dist/gbc.umd.js",
|
|
15
|
-
"module": "./dist/gbc.js",
|
|
16
|
-
"exports": {
|
|
17
|
-
".": {
|
|
18
|
-
"import": "./dist/gbc.es.js",
|
|
19
|
-
"require": "./dist/gbc.umd.js",
|
|
20
|
-
"types": "./dist/lib.d.ts"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"types": "dist/lib.d.ts",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"dev": "vite",
|
|
26
|
-
"build": "vite build",
|
|
27
|
-
"lint": "eslint .",
|
|
28
|
-
"preview": "vite preview",
|
|
29
|
-
"storybook": "storybook dev -p 6006",
|
|
30
|
-
"build-storybook": "storybook build",
|
|
31
|
-
"chromatic": "npx chromatic --exit-zero-on-changes --project-token chpt_5e23c1d501d3b2b",
|
|
32
|
-
"verify": "yarn build && yarn build-storybook"
|
|
33
|
-
},
|
|
34
|
-
"peerDependencies": {
|
|
35
|
-
"react": "^18.3.1",
|
|
36
|
-
"react-dom": "^18.3.1"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@apollo/client": "^3.11.10",
|
|
40
|
-
"bigwig-reader": "^1.3.1",
|
|
41
|
-
"graphql": "^16.9.0",
|
|
42
|
-
"logots-react": "^0.2.0",
|
|
43
|
-
"react-colorful": "^5.6.1",
|
|
44
|
-
"react-draggable": "^4.4.6",
|
|
45
|
-
"use-deep-compare-effect": "^1.8.1"
|
|
46
|
-
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"@chromatic-com/storybook": "1.9.0",
|
|
49
|
-
"@eslint/js": "^9.9.0",
|
|
50
|
-
"@storybook/addon-essentials": "8.3.4",
|
|
51
|
-
"@storybook/addon-interactions": "8.3.4",
|
|
52
|
-
"@storybook/addon-links": "8.3.4",
|
|
53
|
-
"@storybook/addon-onboarding": "8.3.4",
|
|
54
|
-
"@storybook/blocks": "8.3.4",
|
|
55
|
-
"@storybook/cli": "^8.3.4",
|
|
56
|
-
"@storybook/react": "8.3.4",
|
|
57
|
-
"@storybook/react-vite": "^8.3.4",
|
|
58
|
-
"@storybook/test": "8.3.4",
|
|
59
|
-
"@types/react": "^18.3.3",
|
|
60
|
-
"@types/react-dom": "^18.3.0",
|
|
61
|
-
"@vitejs/plugin-react": "^4.3.1",
|
|
62
|
-
"chromatic": "^11.15.0",
|
|
63
|
-
"eslint": "^9.9.0",
|
|
64
|
-
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
65
|
-
"eslint-plugin-react-refresh": "^0.4.9",
|
|
66
|
-
"eslint-plugin-storybook": "^0.9.0",
|
|
67
|
-
"globals": "^15.9.0",
|
|
68
|
-
"react": "^18.3.1",
|
|
69
|
-
"react-dom": "^18.3.1",
|
|
70
|
-
"storybook": "8.3.4",
|
|
71
|
-
"typescript": "^5.5.3",
|
|
72
|
-
"typescript-eslint": "^8.0.1",
|
|
73
|
-
"vite": "^5.4.1",
|
|
74
|
-
"vite-plugin-dts": "^4.2.3",
|
|
75
|
-
"vite-plugin-externalize-deps": "^0.8.0"
|
|
76
|
-
},
|
|
77
|
-
"eslintConfig": {
|
|
78
|
-
"extends": [
|
|
79
|
-
"plugin:storybook/recommended"
|
|
80
|
-
]
|
|
81
|
-
},
|
|
82
|
-
"keywords": [
|
|
83
|
-
"genomics",
|
|
84
|
-
"bioinformatics"
|
|
85
|
-
],
|
|
86
|
-
"author": "Jair Meza, Nishi Phalke",
|
|
87
|
-
"license": "ISC",
|
|
88
|
-
"bugs": {
|
|
89
|
-
"url": "https://github.com/weng-lab/genomebrowser/issues"
|
|
90
|
-
},
|
|
91
|
-
"homepage": "https://github.com/weng-lab/genomebrowser#readme"
|
|
92
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@weng-lab/genomebrowser",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.4",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/weng-lab/genomebrowser-components.git"
|
|
8
|
+
},
|
|
9
|
+
"description": "UMMS Genome Browser",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"main": "./dist/gbc.umd.js",
|
|
15
|
+
"module": "./dist/gbc.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/gbc.es.js",
|
|
19
|
+
"require": "./dist/gbc.umd.js",
|
|
20
|
+
"types": "./dist/lib.d.ts"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"types": "dist/lib.d.ts",
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "vite",
|
|
26
|
+
"build": "vite build",
|
|
27
|
+
"lint": "eslint .",
|
|
28
|
+
"preview": "vite preview",
|
|
29
|
+
"storybook": "storybook dev -p 6006",
|
|
30
|
+
"build-storybook": "storybook build",
|
|
31
|
+
"chromatic": "npx chromatic --exit-zero-on-changes --project-token chpt_5e23c1d501d3b2b",
|
|
32
|
+
"verify": "yarn build && yarn build-storybook"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"react": "^18.3.1",
|
|
36
|
+
"react-dom": "^18.3.1"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@apollo/client": "^3.11.10",
|
|
40
|
+
"bigwig-reader": "^1.3.1",
|
|
41
|
+
"graphql": "^16.9.0",
|
|
42
|
+
"logots-react": "^0.2.0",
|
|
43
|
+
"react-colorful": "^5.6.1",
|
|
44
|
+
"react-draggable": "^4.4.6",
|
|
45
|
+
"use-deep-compare-effect": "^1.8.1"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@chromatic-com/storybook": "1.9.0",
|
|
49
|
+
"@eslint/js": "^9.9.0",
|
|
50
|
+
"@storybook/addon-essentials": "8.3.4",
|
|
51
|
+
"@storybook/addon-interactions": "8.3.4",
|
|
52
|
+
"@storybook/addon-links": "8.3.4",
|
|
53
|
+
"@storybook/addon-onboarding": "8.3.4",
|
|
54
|
+
"@storybook/blocks": "8.3.4",
|
|
55
|
+
"@storybook/cli": "^8.3.4",
|
|
56
|
+
"@storybook/react": "8.3.4",
|
|
57
|
+
"@storybook/react-vite": "^8.3.4",
|
|
58
|
+
"@storybook/test": "8.3.4",
|
|
59
|
+
"@types/react": "^18.3.3",
|
|
60
|
+
"@types/react-dom": "^18.3.0",
|
|
61
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
62
|
+
"chromatic": "^11.15.0",
|
|
63
|
+
"eslint": "^9.9.0",
|
|
64
|
+
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
65
|
+
"eslint-plugin-react-refresh": "^0.4.9",
|
|
66
|
+
"eslint-plugin-storybook": "^0.9.0",
|
|
67
|
+
"globals": "^15.9.0",
|
|
68
|
+
"react": "^18.3.1",
|
|
69
|
+
"react-dom": "^18.3.1",
|
|
70
|
+
"storybook": "8.3.4",
|
|
71
|
+
"typescript": "^5.5.3",
|
|
72
|
+
"typescript-eslint": "^8.0.1",
|
|
73
|
+
"vite": "^5.4.1",
|
|
74
|
+
"vite-plugin-dts": "^4.2.3",
|
|
75
|
+
"vite-plugin-externalize-deps": "^0.8.0"
|
|
76
|
+
},
|
|
77
|
+
"eslintConfig": {
|
|
78
|
+
"extends": [
|
|
79
|
+
"plugin:storybook/recommended"
|
|
80
|
+
]
|
|
81
|
+
},
|
|
82
|
+
"keywords": [
|
|
83
|
+
"genomics",
|
|
84
|
+
"bioinformatics"
|
|
85
|
+
],
|
|
86
|
+
"author": "Jair Meza, Nishi Phalke",
|
|
87
|
+
"license": "ISC",
|
|
88
|
+
"bugs": {
|
|
89
|
+
"url": "https://github.com/weng-lab/genomebrowser-components/issues"
|
|
90
|
+
},
|
|
91
|
+
"homepage": "https://github.com/weng-lab/genomebrowser-components#readme"
|
|
92
|
+
}
|