vscode-kanbn/package.json
2018-05-19 14:52:07 -07:00

51 lines
1.2 KiB
JSON

{
"name": "vscode-webview-react",
"version": "0.1.0",
"engines": {
"vscode": "^1.23.0"
},
"publisher": "rebornix",
"activationEvents": [
"onCommand:catCoding.start",
"onCommand:catCoding.doRefactor"
],
"main": "./ext-src/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"
}
]
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts-ts": "2.16.0",
"vscode": "^1.1.17"
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "react-scripts-ts start",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"typescript": "^2.8.3"
}
}