@weng-lab/genomebrowser 1.0.0-alpha.1 → 1.0.0
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/LICENSE +7 -7
- package/README.md +211 -211
- package/dist/genomebrowser.es.js +209 -213
- package/dist/genomebrowser.es.js.map +1 -1
- package/dist/lib.d.ts +0 -2
- package/package.json +61 -61
- package/dist/components/browser/GQLWrapper.d.ts +0 -3
package/dist/lib.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ import { Highlight } from './components/highlight/types';
|
|
|
11
11
|
import { DisplayMode, TrackType } from './components/tracks/types';
|
|
12
12
|
import { Vibrant, Pastels } from './utils/color';
|
|
13
13
|
import { Domain, Chromosome } from './utils/types';
|
|
14
|
-
import { default as GQLWrapper } from './components/browser/GQLWrapper';
|
|
15
14
|
export { Browser };
|
|
16
15
|
export type { BigBedConfig, SquishBigBedProps, DenseBigBedProps, Rect };
|
|
17
16
|
export type { BulkBedConfig, BulkBedProps, BulkBedDataset, BulkBedRect };
|
|
@@ -25,4 +24,3 @@ export type { Highlight };
|
|
|
25
24
|
export { DisplayMode, TrackType };
|
|
26
25
|
export { Vibrant, Pastels };
|
|
27
26
|
export type { Domain, Chromosome };
|
|
28
|
-
export { GQLWrapper };
|
package/package.json
CHANGED
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@weng-lab/genomebrowser",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "1.0.0
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"module": "dist/genomebrowser.es.js",
|
|
11
|
-
"types": "dist/lib.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
"react-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"eslint": "^
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@weng-lab/genomebrowser",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"module": "dist/genomebrowser.es.js",
|
|
11
|
+
"types": "dist/lib.d.ts",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@apollo/client": "^3.11.10",
|
|
14
|
+
"graphql": "^16.9.0",
|
|
15
|
+
"logo-test": "^0.0.4",
|
|
16
|
+
"react-colorful": "^5.6.1",
|
|
17
|
+
"react-draggable": "^4.4.6",
|
|
18
|
+
"zustand": "^5.0.3"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"react": "^19.1.0",
|
|
22
|
+
"react-dom": "^19.1.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@chromatic-com/storybook": "^4.0.0",
|
|
26
|
+
"@eslint/js": "^9.22.0",
|
|
27
|
+
"@storybook/addon-a11y": "9.0.4",
|
|
28
|
+
"@storybook/addon-docs": "9.0.4",
|
|
29
|
+
"@storybook/addon-onboarding": "9.0.4",
|
|
30
|
+
"@storybook/addon-vitest": "9.0.4",
|
|
31
|
+
"@storybook/react-vite": "9.0.4",
|
|
32
|
+
"@types/node": "^24.0.0",
|
|
33
|
+
"@types/react": "^19.0.10",
|
|
34
|
+
"@types/react-dom": "^19.0.4",
|
|
35
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
36
|
+
"@vitest/browser": "^3.2.0",
|
|
37
|
+
"@vitest/coverage-v8": "^3.2.0",
|
|
38
|
+
"eslint": "^9.22.0",
|
|
39
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
40
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
41
|
+
"eslint-plugin-storybook": "9.0.4",
|
|
42
|
+
"globals": "^16.0.0",
|
|
43
|
+
"playwright": "^1.52.0",
|
|
44
|
+
"prettier": "3.6.2",
|
|
45
|
+
"storybook": "9.0.4",
|
|
46
|
+
"typescript": "~5.7.2",
|
|
47
|
+
"typescript-eslint": "^8.26.1",
|
|
48
|
+
"vite": "^6.3.5",
|
|
49
|
+
"vite-plugin-dts": "^4.2.3",
|
|
50
|
+
"vitest": "^3.2.0"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "vite",
|
|
54
|
+
"build": "tsc -b && vite build",
|
|
55
|
+
"lint": "eslint .",
|
|
56
|
+
"preview": "vite preview",
|
|
57
|
+
"storybook": "storybook dev -p 6006",
|
|
58
|
+
"build-storybook": "storybook build",
|
|
59
|
+
"format": "prettier --write ."
|
|
60
|
+
}
|
|
61
|
+
}
|