-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 766 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name" : "template-pack",
"displayName": "Template Pack",
"publisher" : "local",
"description": "Template VS Code Extension Pack",
"version" : "1.0.0",
"private" : true,
"engines" : {"vscode": "^1.38.0"},
"repository" : {"url": "https://github.com/csmith14/template-extension-pack"},
"scripts" : {
"up" : "node bin/readme.js && rm *.vsix & yarn bump package.json patch",
"vpack" : "yarn up && npx vsce package",
"vinstall": "yarn vsc-pack && node ./bin/install.js"
},
"categories" : ["Extension Packs"],
"config" : {"vscode": ["code", "code-insiders"]},
"extensionPack" : [],
"devDependencies": {
"bump-file": "^2.0.0",
"execa" : "^2.0.4",
"fs-extra" : "^8.1.0"
}
}