-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.24 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
{
"name": "build-tools",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"scripts": {
"clean": "pnpm recursive --no-sort run clean",
"dev": "pnpm run --parallel --if-present dev",
"build": "pnpm recursive --sort run build",
"test": "vitest",
"check-types": "tsc --noEmit",
"watch-types": "pnpm check-types -w",
"lint": "eslint ./packages ./integration-tests",
"prettier-check": "pnpm prettier:common -c",
"prettier": "pnpm prettier:common -w",
"prettier:common": "prettier ./packages ./integration-tests --ignore-path .eslintignore --cache",
"prepare": "husky",
"ci:test": "pnpm run clean && pnpm run check-types && pnpm run lint && pnpm run build && pnpm install && pnpm run test run",
"ci:version": "pnpm changeset version && pnpm prettier && pnpm install",
"ci:publish": "pnpm run clean && pnpm run build && pnpm publish -r --access public && pnpm changeset tag"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^18.19.57",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"engines": {
"node": ">= 18",
"pnpm": "^9"
},
"pnpm": {
"//": [
"overrides:",
"semver: https://github.com/advisories/GHSA-c2qf-rxjj-qqgw",
"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",
"cross-spawn: https://github.com/advisories/GHSA-3xgq-45jj-v275",
"@open-pioneer/runtime: mixed versions, see below",
"",
"peers:",
"trails package overrides can be removed when they no longer use peer deps.",
"these are in conflict because the integration tests use old versions of those packages."
],
"overrides": {
"semver@<7.5.2": ">=7.5.2",
"braces@<3.0.3": ">=3.0.3",
"fast-loops@<1.1.4": ">=1.1.4",
"micromatch@<4.0.8": ">=4.0.8",
"@open-pioneer/runtime": ">= 2.2.0",
"cross-spawn@<7.0.5": ">=7.0.5"
},
"auditConfig": {
"ignoreCves": []
},
"peerDependencyRules": {
"allowedVersions": {
"@open-pioneer/chakra-integration>framer-motion": ">=4.0.0",
"@open-pioneer/base-theme": "*",
"@open-pioneer/chakra-integration@^2.2.0": "*",
"@open-pioneer/runtime-react-support@^1.0.2": "*",
"@open-pioneer/core": "*"
}
}
}
}