2018-04-24 15:07:32 -07:00
|
|
|
{
|
2018-10-08 15:37:24 -07:00
|
|
|
"name": "cat-coding",
|
|
|
|
|
"description": "Cat Coding - A Webview API Sample",
|
|
|
|
|
"version": "0.0.1",
|
2018-10-15 11:52:55 -07:00
|
|
|
"publisher": "vscode-samples",
|
2018-10-08 15:37:24 -07:00
|
|
|
"engines": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode": "^1.32.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onCommand:catCoding.start",
|
|
|
|
|
"onCommand:catCoding.doRefactor",
|
|
|
|
|
"onWebviewPanel:catCoding"
|
|
|
|
|
],
|
2018-12-17 10:21:13 -08:00
|
|
|
"main": "./out/extension.js",
|
2018-10-08 15:37:24 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "catCoding.start",
|
|
|
|
|
"title": "Start cat coding session",
|
|
|
|
|
"category": "Cat Coding"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"command": "catCoding.doRefactor",
|
|
|
|
|
"title": "Do some refactoring",
|
|
|
|
|
"category": "Cat Coding"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2019-05-09 14:50:48 -07:00
|
|
|
"vscode:prepublish": "npm run compile",
|
2019-05-10 14:43:54 -07:00
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"lint": "tslint -p ./",
|
2019-05-09 14:50:48 -07:00
|
|
|
"watch": "tsc -w -p ./"
|
2018-10-08 15:37:24 -07:00
|
|
|
},
|
2019-02-19 11:48:35 -08:00
|
|
|
"dependencies": {},
|
2018-10-08 15:37:24 -07:00
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^10.5.2",
|
2019-05-09 17:04:08 -07:00
|
|
|
"tslint": "^5.16.0",
|
2019-05-09 16:59:56 -07:00
|
|
|
"typescript": "^3.4.5",
|
2019-05-09 14:50:48 -07:00
|
|
|
"@types/vscode": "^1.32.0"
|
2018-10-08 15:37:24 -07:00
|
|
|
}
|
2018-04-24 15:07:32 -07:00
|
|
|
}
|