col-browser 2.0.0-rc.6
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 +798 -0
- package/es/col-browser.css +1 -0
- package/es/index.js +7967 -0
- package/es/index.js.map +1 -0
- package/package.json +79 -0
- package/umd/col-browser.js +96500 -0
- package/umd/col-browser.js.map +1 -0
- package/umd/col-browser.min.js +32 -0
- package/umd/col-browser.min.js.map +1 -0
- package/umd/main.css +127 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "col-browser",
|
|
3
|
+
"version": "2.0.0-rc.6",
|
|
4
|
+
"description": "Catalogue of Life browse and search React components",
|
|
5
|
+
"main": "umd/col-browser.js",
|
|
6
|
+
"module": "es/index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./es/index.js",
|
|
10
|
+
"require": "./umd/col-browser.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"es",
|
|
15
|
+
"umd"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"registry": "https://registry.npmjs.org/",
|
|
19
|
+
"access": "public",
|
|
20
|
+
"tag": "next"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "vite build",
|
|
25
|
+
"build:umd": "vite build --config vite.config.umd.js && node scripts/minify.js",
|
|
26
|
+
"build:demo": "vite build --config vite.config.demo.js",
|
|
27
|
+
"build:all": "npm run build && npm run build:umd",
|
|
28
|
+
"prepublishOnly": "npm run build:all",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:coverage": "vitest run --coverage",
|
|
31
|
+
"test:watch": "vitest"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"antd": "^6.4.3",
|
|
35
|
+
"axios": "^1.16.1",
|
|
36
|
+
"btoa": "^1.2.1",
|
|
37
|
+
"dataloader": "^2.2.3",
|
|
38
|
+
"dayjs": "^1.11.13",
|
|
39
|
+
"dompurify": "^3.4.6",
|
|
40
|
+
"highcharts": "^12.6.0",
|
|
41
|
+
"highcharts-react-official": "^3.2.3",
|
|
42
|
+
"history": "^5.3.0",
|
|
43
|
+
"linkify-html": "^4.3.3",
|
|
44
|
+
"linkifyjs": "^4.3.3",
|
|
45
|
+
"lodash": ">=4.17.21",
|
|
46
|
+
"marked": "^18.0.4",
|
|
47
|
+
"query-string": "^9.3.1",
|
|
48
|
+
"react-highlight-words": "^0.21.0",
|
|
49
|
+
"react-jss": "^10.10.0",
|
|
50
|
+
"react-router-dom": "^7.15.1"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"maplibre-gl": "^4.7.0 || ^5.0.0",
|
|
54
|
+
"react": "^19.0.0",
|
|
55
|
+
"react-dom": "^19.0.0"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"jsdom": "^29.1.1",
|
|
59
|
+
"less": "^4.2.0",
|
|
60
|
+
"maplibre-gl": "^5.0.0",
|
|
61
|
+
"react": "^19.0.0",
|
|
62
|
+
"react-dom": "^19.0.0",
|
|
63
|
+
"terser": "^5.48.0",
|
|
64
|
+
"vite": "^6.4.2",
|
|
65
|
+
"vitest": "^3.2.4"
|
|
66
|
+
},
|
|
67
|
+
"author": "",
|
|
68
|
+
"homepage": "",
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "https://github.com/CatalogueOfLife/portal-components.git"
|
|
73
|
+
},
|
|
74
|
+
"keywords": [
|
|
75
|
+
"react-component",
|
|
76
|
+
"taxonomy",
|
|
77
|
+
"catalogue of life"
|
|
78
|
+
]
|
|
79
|
+
}
|