-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.05 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
{
"name": "@sap/guided-answers-extension",
"version": "0.0.1",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@changesets/cli": "2.29.7",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@types/jest": "29.5.14",
"@types/node": "18.19.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"changelog-parser": "3.0.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-import-resolver-typescript": "3.10.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-sonarjs": "0.25.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-sonar": "0.2.16",
"prettier": "3.6.2",
"pretty-quick": "4.2.2",
"rimraf": "5.0.10",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"scripts": {
"build": "pnpm recursive run build",
"ci:version": "changeset version && pnpm install --lockfile-only",
"clean": "pnpm recursive run clean",
"format": "pnpm recursive run format",
"ide-ext:package": "pnpm recursive run ide-ext:package",
"lint": "pnpm recursive run lint",
"lint:fix": "pnpm recursive run lint:fix",
"prepare": "husky install",
"test": "pnpm recursive run test"
},
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": "8.15.9",
"node": ">=18.x"
},
"packageManager": "pnpm@8.15.9",
"pnpm": {
"overrides": {
"cross-spawn": ">=7.0.5",
"handlebars": ">=4.7.9",
"@babel/helpers": ">=7.26.10",
"@babel/runtime": ">=7.26.10",
"axios": ">=1.16.0",
"brace-expansion@>=1 <2": "1.1.13",
"brace-expansion@>=2 <2.0.3": "2.0.3",
"diff@>=4 <4.0.4": "4.0.4",
"fast-uri@>=3 <3.1.2": "3.1.2",
"flatted@>=3 <3.4.2": "3.4.2",
"glob@>=10.2.0 <10.5.0": "10.5.0",
"immutable@>=4 <4.3.8": "4.3.8",
"js-yaml@>=3 <3.14.2": "3.14.2",
"js-yaml@>=4 <4.1.1": "4.2.0",
"lodash@>=4 <4.18.0": "4.18.0",
"lodash-es@>=4 <4.18.0": "4.18.0",
"micromatch@>=4 <4.0.8": "4.0.8",
"minimatch@>=3.0.0 <3.1.4": "3.1.4",
"minimatch@>=9 <9.0.7": "9.0.7",
"nanoid@>=3 <3.3.8": "3.3.8",
"picomatch@>=2 <2.3.2": "2.3.2",
"picomatch@>=4 <4.0.4": "4.0.4",
"postcss@>=8 <8.5.10": "8.5.10",
"qs@>=6 <6.15.2": "6.15.2",
"tmp@>=0 <0.2.6": "0.2.6",
"undici@>=6 <6.24.0": "6.24.0",
"underscore@>=1 <1.13.8": "1.13.8",
"uuid": "11.1.1",
"ws@>=8 <8.20.1": "8.20.1",
"yaml@>=1 <1.10.3": "1.10.3"
}
}
}