Skip to content

Commit 5447ab3

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 24aa23a commit 5447ab3

File tree

2 files changed

+37
-87
lines changed

2 files changed

+37
-87
lines changed
Lines changed: 18 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,20 @@
11
{
2-
"name": "generator-code-dependencies-versions",
3-
"description": "Helper file to manage the versions of the node modules used by the generators. Named package.json so the VS Code dependencies completions work. Must be in a subfolder due to #325",
4-
"version": "0.0.0",
5-
"private": true,
6-
"dependencies": {
7-
"@types/mocha": "^10.0.10",
8-
"@types/node": "20.x",
9-
"@types/assert": "^1.5.11",
10-
"@typescript-eslint/eslint-plugin": "^8.28.0",
11-
"@typescript-eslint/parser": "^8.28.0",
12-
"eslint": "^9.23.0",
13-
"glob": "^11.0.1",
14-
"mocha": "^11.1.0",
15-
"typescript": "^5.8.2",
16-
"@vscode/test-cli": "^0.0.10",
17-
"@vscode/test-electron": "^2.4.1",
18-
"@vscode/test-web": "^0.0.68",
19-
"@types/webpack-env": "^1.18.8",
20-
"@types/vscode-notebook-renderer": "^1.72.3",
21-
"concurrently": "^9.1.2",
22-
"css-loader": "^7.1.2",
23-
"fork-ts-checker-webpack-plugin": "^9.0.2",
24-
"style-loader": "^4.0.0",
25-
"ts-loader": "^9.5.2",
26-
"vscode-dts": "^0.3.3",
27-
"vscode-notebook-error-overlay": "^1.1.0",
28-
"webpack": "^5.98.0",
29-
"util": "^0.12.5",
30-
"webpack-cli": "^6.0.1",
31-
"webpack-dev-server": "^5.2.0",
32-
"assert": "^2.1.0",
33-
"process": "^0.11.10",
34-
"npm-run-all": "^4.1.5",
35-
"esbuild": "^0.25.1",
36-
"@esbuild-plugins/node-globals-polyfill": "^0.2.3"
37-
}
2+
"name": "generator-code-dependencies-versions",
3+
"description": "Helper file to manage the versions of the node modules used by the generators. Named package.json so the VS Code dependencies completions work. Must be in a subfolder due to #325",
4+
"dependencies": {
5+
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
6+
"@types/assert": "^1.5.11",
7+
"@types/node": "20.x",
8+
"assert": "^2.1.0",
9+
"concurrently": "^9.1.2",
10+
"css-loader": "^7.1.2",
11+
"esbuild": "^0.25.1",
12+
"glob": "^11.0.1",
13+
"npm-run-all": "^4.1.5",
14+
"process": "^0.11.10",
15+
"style-loader": "^4.0.0",
16+
"ts-loader": "^9.5.2",
17+
"util": "^0.12.5"
18+
},
19+
"devDependencies": {}
3820
}

package.json

Lines changed: 19 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,21 @@
11
{
2-
"name": "generator-code",
3-
"version": "1.11.8",
4-
"description": "Yeoman generator for Visual Studio Code extensions.",
5-
"keywords": [
6-
"yeoman-generator",
7-
"vscode",
8-
"visual studio",
9-
"visual studio code",
10-
"vs code",
11-
"extensions"
12-
],
13-
"type": "module",
14-
"repository": {
15-
"type": "git",
16-
"url": "https://github.com/Microsoft/vscode-generator-code.git"
17-
},
18-
"bugs": {
19-
"url": "https://github.com/Microsoft/vscode-generator-code/issues"
20-
},
21-
"main": "./generators/app/index.js",
22-
"homepage": "http://code.visualstudio.com",
23-
"license": "MIT",
24-
"author": {
25-
"name": "VS Code Team",
26-
"url": "https://github.com/Microsoft"
27-
},
28-
"engines": {
29-
"node": "^18.17.0 || >=20.5.0"
30-
},
31-
"scripts": {
32-
"test": "mocha",
33-
"prepublishOnly": "npm test",
34-
"preversion": "npm test",
35-
"postversion": "git push && git push --tags"
36-
},
37-
"dependencies": {
38-
"chalk": "^5.4.1",
39-
"fast-plist": "^0.1.3",
40-
"request-light": "^0.8.0",
41-
"which": "^5.0.0",
42-
"yeoman-generator": "^7.5.1",
43-
"yosay": "^3.0.0"
44-
},
45-
"devDependencies": {
46-
"@types/mocha": "^10.0.10",
47-
"@types/node": "^18.19.57",
48-
"mocha": "^11.1.0",
49-
"yeoman-environment": "^4.4.3",
50-
"yeoman-test": "^10.1.0",
51-
"jsonc-parser": "^3.3.1"
52-
}
2+
"name": "generator-code",
3+
"description": "Yeoman generator for Visual Studio Code extensions.",
4+
"main": "./generators/app/index.js",
5+
"scripts": {
6+
"prepublishOnly": "npm test",
7+
"preversion": "npm test",
8+
"postversion": "git push && git push --tags"
9+
},
10+
"dependencies": {
11+
"chalk": "^5.4.1",
12+
"fast-plist": "^0.1.3",
13+
"request-light": "^0.8.0",
14+
"which": "^5.0.0",
15+
"yosay": "^3.0.0"
16+
},
17+
"devDependencies": {
18+
"@types/node": "^18.19.57",
19+
"jsonc-parser": "^3.3.1"
20+
}
5321
}

0 commit comments

Comments
 (0)