Files
vscode-extension-samples/progress-sample/package.json

49 lines
1.0 KiB
JSON
Raw Normal View History

2018-03-27 11:03:01 +02:00
{
"name": "progress-ts",
"displayName": "Notification Progress",
"description": "Show a long running operation in the notification area",
"version": "0.0.1",
"publisher": "vscode-samples",
"private": true,
"license": "MIT",
2018-03-27 11:03:01 +02:00
"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"
2018-03-27 11:03:01 +02:00
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "extension.startTask",
"title": "Show Progress"
}
]
},
2018-12-17 10:21:13 -08:00
"main": "./out/extension.js",
2018-03-27 11:03:01 +02:00
"scripts": {
"vscode:prepublish": "npm run compile",
2019-05-30 18:28:15 -07:00
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint . --ext .ts,.tsx"
2018-03-27 11:03:01 +02:00
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
2021-03-02 15:59:42 -08:00
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
2021-07-13 18:48:28 -07:00
"typescript": "^4.3.5"
2018-03-27 11:03:01 +02:00
}
}