mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "cat-coding",
|
|
"description": "Cat Coding - A Webview API Sample",
|
|
"version": "0.0.1",
|
|
"publisher": "vscode-samples",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.47.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onCommand:catCoding.start",
|
|
"onCommand:catCoding.doRefactor",
|
|
"onWebviewPanel:catCoding"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "catCoding.start",
|
|
"title": "Start cat coding session",
|
|
"category": "Cat Coding"
|
|
},
|
|
{
|
|
"command": "catCoding.doRefactor",
|
|
"title": "Do some refactoring",
|
|
"category": "Cat Coding"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "npm run compile",
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"watch": "tsc -w -p ./"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^12.12.0",
|
|
"@types/vscode": "^1.47.0",
|
|
"@types/vscode-webview": "^1.57.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.0",
|
|
"@typescript-eslint/parser": "^4.16.0",
|
|
"eslint": "^7.21.0",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|