-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
120 lines (120 loc) · 5.1 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
115
116
117
118
119
120
{
"name": "starter",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist && pnpm recursive exec rimraf dist",
"dev": "vite",
"check-types": "tsc --noEmit",
"watch-types": "pnpm check-types -w",
"check-duplicates": "pnpm check-pnpm-duplicates -c support/duplicate-packages.yaml",
"build": "vite build",
"build-docs": "typedoc",
"build-license-report": "tsx ./support/create-license-report.ts",
"generate-sbom": "tsx ./support/create-cyclonedx-sbom.ts",
"preview": "vite preview",
"lint": "eslint ./src ./support --ext .js,.ts,.jsx,.tsx,.mjs,.mts,.cjs,.cts",
"eslint": "pnpm run lint",
"prettier-check": "pnpm prettier:common -c",
"prettier": "pnpm prettier:common -w",
"prettier:common": "prettier ./src ./support ./docs --ignore-path .eslintignore --cache",
"test": "vitest",
"prepare": "husky && pnpm check-duplicates"
},
"pnpm": {
"//": [
"overrides",
"=========",
"semver: https://github.com/advisories/GHSA-c2qf-rxjj-qqgw",
"tough-cookie: https://github.com/advisories/GHSA-72xf-g2v4-qvf3",
"@mapbox/mapbox-gl-style-spec: license issues, see https://github.com/openlayers/ol-mapbox-style/pull/940",
"braces: https://github.com/advisories/GHSA-grv7-fg5c-xmjg",
"ws: https://github.com/advisories/GHSA-3h5v-q93c-6h6q",
"fast-loops: https://github.com/advisories/GHSA-3q56-9cc2-46j4",
"micromatch: https://github.com/advisories/GHSA-952p-6rrq-rcjv",
"vite-plugin-eslint>rollup: https://github.com/advisories/GHSA-gcx4-mw62-g8wm",
"cross-spawn: https://github.com/advisories/GHSA-3xgq-45jj-v275",
"",
"ignored cves",
"============",
"",
"patches",
"=======",
"react-select: patched to use composedPath() in event conditions; needed for web component integration (see https://github.com/JedWatson/react-select/issues/5824)",
"@chakra-ui/menu;react-use-outside-click;hooks: patched to fix menus in shadow dom (see https://github.com/open-pioneer/trails-openlayers-base-packages/issues/184)",
"",
"peer dependency rules",
"====================="
],
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3",
"@mapbox/mapbox-gl-style-spec": "npm:@maplibre/maplibre-gl-style-spec@catalog:",
"chakra-react-select>react-select": "^5.8.0",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"fast-loops@<1.1.4": ">=1.1.4",
"micromatch@<4.0.8": ">=4.0.8",
"vite-plugin-eslint>rollup": ">=3.29.5",
"cross-spawn@<7.0.5": ">=7.0.5"
},
"auditConfig": {
"ignoreCves": []
},
"patchedDependencies": {
"@chakra-ui/[email protected]": "patches/@[email protected]",
"@chakra-ui/[email protected]": "patches/@[email protected]",
"@chakra-ui/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
},
"peerDependencyRules": {}
},
"devDependencies": {
"@open-pioneer/build-package-cli": "catalog:",
"@open-pioneer/build-support": "catalog:",
"@open-pioneer/check-pnpm-duplicates": "catalog:",
"@open-pioneer/vite-plugin-pioneer": "catalog:",
"@testing-library/dom": "catalog:",
"@testing-library/jest-dom": "catalog:",
"@testing-library/react": "catalog:",
"@testing-library/user-event": "catalog:",
"@types/js-yaml": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@vitejs/plugin-react-swc": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-import-resolver-typescript": "catalog:",
"eslint-plugin-header": "catalog:",
"eslint-plugin-import": "catalog:",
"eslint-plugin-jsx-a11y": "catalog:",
"eslint-plugin-react": "catalog:",
"eslint-plugin-react-hooks": "catalog:",
"eslint-plugin-unused-imports": "catalog:",
"fast-glob": "catalog:",
"handlebars": "catalog:",
"happy-dom": "catalog:",
"husky": "catalog:",
"js-yaml": "catalog:",
"jsdom": "catalog:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"react": "catalog:",
"rimraf": "catalog:",
"sass": "catalog:",
"tsx": "catalog:",
"typedoc": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-eslint": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">= 18",
"pnpm": "^9"
}
}