-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.46 KB
/
package.json
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
{
"name": "maplibre-react-components",
"version": "0.2.0",
"description": "React components for MapLibre GL JS",
"private": true,
"keywords": [
"maplibre",
"react"
],
"author": "Hugues Tavernier",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lhapaipai/maplibre-react-components.git"
},
"homepage": "https://maplibre-react-components.pentatrion.com",
"type": "module",
"main": "src/index.ts",
"scripts": {
"dev:lib": "pnpm build:css && node generate-public-package && tsup --watch",
"dev:css": "postcss --watch -o dist/style.css src/style/index.css",
"build:lib": "tsup --clean",
"build:css": "postcss -o dist/style.css src/style/index.css",
"build": "pnpm build:lib && pnpm build:css && node generate-public-package",
"fontello": "fontello",
"storybook": "storybook dev -p 6009",
"build:storybook": "storybook build",
"test": "vitest",
"test-run": "vitest --run",
"lint:check": "eslint -c eslint.config.js ./src",
"tsc:check": "tsc -p tsconfig.build.json --noEmit",
"ci": "pnpm lint:check && pnpm tsc:check && pnpm test-run",
"prepare": "husky"
},
"files": [
"dist/",
"src/"
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/js": "^9.17.0",
"@floating-ui/dom": "^1.6.12",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mapbox/point-geometry": "^1.1.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-themes": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/manager-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@storybook/types": "^8.4.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/geojson": "^7946.0.15",
"@types/mapbox__point-geometry": "^0.1.4",
"@types/offscreencanvas": "^2019.7.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"canvas": "~2.11.2",
"cssnano": "^7.0.6",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jsdom": "^24.1.3",
"maplibre-gl": "^5.0.0",
"msw": "^2.7.0",
"pentatrion-design": "^0.1.3",
"pentatrion-fontello-cli": "^0.0.5",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-inline-base64": "^7.3.1",
"postcss-inline-svg": "^6.0.0",
"postcss-load-config": "^6.0.1",
"postcss-nesting": "^13.0.1",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.4.7",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vite": "^5.4.11",
"vitest": "^1.6.0",
"vitest-webgl-canvas-mock": "^1.1.0"
},
"dependencies": {
"clsx": "^2.1.1"
},
"peerDependencies": {
"maplibre-gl": "^5.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"maplibre-gl": {
"optional": false
}
},
"volta": {
"node": "20.14.0"
}
}