-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.54 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.54 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@ixnode/geo-sphere",
"version": "0.1.47",
"description": "A Node.js package for rendering interactive world maps with Mercator projection, customizable languages, and advanced interactivity features such as zoom, pan, and click events.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src/components/WorldMap/WorldMap.scss",
"src/helper/Versions/Versions.scss",
"src",
"package.json",
"README.md",
"LICENSE.md",
"VERSION"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=chpt_f9fdf4837a37679"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ixnode/node-geo-sphere.git"
},
"keywords": [
"react",
"typescript",
"component",
"geo-sphere",
"world map",
"interactive map",
"mercator projection",
"geospatial",
"GIS",
"geography",
"mapping",
"data visualization",
"zoomable map",
"clickable countries",
"multi-language",
"nodejs",
"touch support",
"map rendering"
],
"author": {
"name": "Björn Hempel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ixnode/node-geo-sphere/issues"
},
"homepage": "https://github.com/ixnode/node-geo-sphere#readme",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@chromatic-com/storybook": "^3.2.3",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-mdx-gfm": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-swc": "^2.0.0",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@svgr/rollup": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/geojson": "^7946.0.15",
"@types/jest": "^27.0.0",
"@types/proj4": "^2.5.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"chromatic": "^11.10.4",
"css-loader": "^7.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.29.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sass": "^1.14.0",
"sass": "^1.83.0",
"sass-loader": "^16.0.1",
"storybook": "^8.4.7",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"geojson": "^0.5.0",
"i18next": "^24.2.1",
"proj4": "^2.15.0",
"react-i18next": "^15.4.0"
}
}