-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 2.66 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
{
"name": "vscode-packaging",
"license": "SEE LICENSE IN README.md",
"engines": {
"node": "^20.0.0"
},
"comments": {
"devDependencies": {
"@types/node": "Keep this pinned to the Node.js major version that ships with VS Code.",
"@types/vscode": "For details, see section *Upgrading the VS Code API version* in `README.md`.",
"@typescript-eslint/eslint-plugin": "Keep this pinned to 7.x unless eslint gets unpinned.",
"@typescript-eslint/parser": "Keep this pinned to 7.x unless eslint gets unpinned.",
"@vscode/vsce": "Private patch for Yarn v4 compatibility. Keep in sync with the version of the `@vscode/vsce` dependency. Temporary note: Keep this pinned to 2.21.0 until an updated cwd patch is available.",
"@yarnpkg/sdks": "Before upgrading to a newer major version, check Node.js version compatibility. When bumping the major version, keep it in sync with `yarn set version` invocations.",
"eslint": "Keep this pinned to 8.x unless the configuration is migrated.",
"typescript": "Keep this pinned to 5.5.x as long as yarn lint prints a warning about typescript-estree."
}
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@yarnpkg/sdks": "^3.1.0",
"typescript": "<=5.5.x"
},
"resolutions": {
"@vscode/vsce@^2.21.1": "patch:@vscode/vsce@npm:2.21.1#./.yarn/patches/@vscode-vsce-npm-2.21.1.patch"
},
"scripts": {
"clean": "yarn workspace extension clean && true yarn workspace packaging clean",
"clean-install": "yarn install && git checkout -- .vscode/settings.json '.yarn/*/LICENSE'",
"compile": "true yarn workspace packaging compile && yarn workspace extension compile",
"lint": "true yarn workspace packaging lint && yarn workspace extension lint",
"package": "true yarn workspace packaging compile && yarn workspace extension package",
"postinstall": "yarn sdks vscode",
"test": "true yarn workspace packaging test",
"upgrade-all": "printf >&2 '%s\\n\\t%s\\n' 'Run the following command line manually:' 'yarn set version 4 && yarn install && yarn upgrade-packages' && false",
"upgrade-lockfile": "yarn up -R '**' && yarn clean-install",
"upgrade-packages": "yarn up '**' '@types/node@<=20.x' '@types/vscode@=1.92' '@typescript-eslint/eslint-plugin@<=7.x' '@typescript-eslint/parser@<=7.x' '@vscode/vsce@^2.21.1' '@yarnpkg/sdks@^3.1.0' 'eslint@<=8.x' 'typescript@<=5.5.x' && yarn up -R '**' && yarn clean-install",
"upgrade-yarn-itself": "printf >&2 '%s\\n\\t%s\\n' 'Run the following command line manually:' 'yarn set version 4 && yarn install && yarn clean-install' && false"
},
"workspaces": [
"extension",
"packaging"
],
"packageManager": "[email protected]"
}