mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Fixes #180 Changes from using `vscode` to `@types/vscode` for the majority of extension samples. The `@types/vscode` package is much smaller and does not pull in any dependencies. Other changes: - Remove so empty test files - Bump engine versions to match @types/vscode versions - Use `npm run compile` for most `vscode:prepublish` scripts
45 lines
908 B
JSON
45 lines
908 B
JSON
{
|
|
"name": "progress-ts",
|
|
"displayName": "Notification Progress",
|
|
"description": "Show a long running operation in the notification area",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.32.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.startTask",
|
|
"title": "Show Progress"
|
|
}
|
|
]
|
|
},
|
|
"main": "./out/extension.js",
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.40",
|
|
"mocha": "^2.3.3",
|
|
"tslint": "^5.11.0",
|
|
"typescript": "^2.1.4",
|
|
"@types/vscode": "^1.32.0"
|
|
}
|
|
}
|