2018-04-24 15:07:32 -07:00
|
|
|
{
|
|
|
|
|
"name": "cat-coding",
|
|
|
|
|
"description": "Cat Coding - A Webview API Sample",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"publisher": "ms-vscode",
|
|
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.23.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onCommand:catCoding.start",
|
|
|
|
|
"onCommand:catCoding.doRefactor"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/src/extension",
|
|
|
|
|
"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": "tsc -p ./",
|
2018-04-25 11:25:10 -07:00
|
|
|
"compile": "tsc -p ./",
|
|
|
|
|
"watch": "tsc -w -p ./",
|
2018-04-24 15:07:32 -07:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2018-05-04 08:59:19 +02:00
|
|
|
"vscode": "^1.1.17"
|
2018-04-24 15:07:32 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/mocha": "^2.2.48",
|
|
|
|
|
"@types/node": "^9.4.6",
|
|
|
|
|
"typescript": "^2.7.2"
|
|
|
|
|
}
|
|
|
|
|
}
|