-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.85 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
{
"name": "core-packages",
"version": "0.0.1",
"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-packages": "pnpm run -r --aggregate-output build",
"build-docs": "typedoc",
"preview": "vite preview",
"lint": "eslint ./src --ext .js,.ts,.jsx,.tsx,.mjs,.mts,.cjs,.cts",
"prettier-check": "pnpm prettier:common -c",
"prettier": "pnpm prettier:common -w",
"prettier:common": "prettier ./src ./docs --ignore-path .eslintignore --cache",
"test": "vitest",
"prepare": "husky && pnpm check-duplicates",
"ci:test": "pnpm run clean && pnpm run lint && pnpm run check-types && vitest run",
"ci:version": "pnpm changeset version && pnpm exec prettier './src/**/CHANGELOG.md' --write --ignore-path .eslintignore && pnpm install",
"ci:publish": "pnpm run clean && pnpm run build-packages && pnpm publish -r --access public && pnpm changeset tag"
},
"pnpm": {
"//": [
"overrides",
"=========",
"semver: https://github.com/advisories/GHSA-c2qf-rxjj-qqgw",
"tough-cookie: https://github.com/advisories/GHSA-72xf-g2v4-qvf3",
"braces: https://github.com/advisories/GHSA-grv7-fg5c-xmjg",
"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",
"============",
"CVE-2023-26115 (word-wrap): ReDoS does not affect us (running client side or at build time)",
"",
"patches",
"=======",
"@changesets/assemble-release-plan: don't bump major if peerDep has a minor release. see https://github.com/changesets/changesets/pull/1132"
],
"overrides": {
"ol-mapbox-style": "workspace:disabled-package@*",
"semver@<7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3",
"braces@<3.0.3": ">=3.0.3",
"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": {
"@changesets/assemble-release-plan@6.0.4": "patches/@changesets__assemble-release-plan.patch"
},
"peerDependencyRules": {
"allowedVersions": {
"react-json-view>react": ">=18",
"react-json-view>react-dom": ">=18",
"flux>react": ">=18"
}
}
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@open-pioneer/build-package-cli": "catalog:",
"@open-pioneer/build-support": "catalog:",
"@open-pioneer/check-pnpm-duplicates": "catalog:",
"@open-pioneer/runtime": "workspace:^",
"@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-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:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"rimraf": "catalog:",
"sass": "catalog:",
"typedoc": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vite-plugin-eslint": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">= 18",
"pnpm": ">= 9"
}
}