vscode-kanbn/package.json
2019-02-04 12:36:11 +01:00

49 lines
1.1 KiB
JSON

{
"name": "vscode-webview-react",
"version": "0.1.0",
"engines": {
"vscode": "^1.23.0"
},
"publisher": "rebornix",
"activationEvents": [
"onCommand:react-webview.start"
],
"main": "./build/ext-src/extension.js",
"contributes": {
"commands": [
{
"command": "react-webview.start",
"title": "Start React Webview",
"category": "React"
}
]
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"vscode": "^1.1.17"
},
"scripts": {
"vscode:prepublish": "react-scripts build && tsc -p tsconfig.extension.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "react-scripts start",
"build": "react-scripts build && tsc -p tsconfig.extension.json",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.1.2",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"react-scripts": "^2.1.3",
"typescript": "^3.3.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}