-
Notifications
You must be signed in to change notification settings - Fork 257
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "generator-code",
"version": "1.11.18",
"description": "Yeoman generator for Visual Studio Code extensions.",
"keywords": [
"yeoman-generator",
"vscode",
"visual studio",
"visual studio code",
"vs code",
"extensions"
],
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-generator-code.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-generator-code/issues"
},
"main": "./generators/app/index.js",
"homepage": "http://code.visualstudio.com",
"license": "MIT",
"author": {
"name": "VS Code Team",
"url": "https://github.com/Microsoft"
},
"engines": {
"node": ">=20.5.0"
},
"scripts": {
"test": "mocha",
"prepublishOnly": "npm test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"chalk": "^5.6.2",
"fast-plist": "^0.1.3",
"request-light": "^0.8.0",
"which": "^6.0.1",
"yeoman-generator": "^7.5.1",
"yosay": "^3.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.x",
"@yeoman/adapter": "^3.1.1",
"jsonc-parser": "^3.3.1",
"mocha": "^11.7.5",
"yeoman-environment": "^5.1.3",
"yeoman-test": "^11.2.0"
}
}