56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "php-intellisense",
|
|
"displayName": "PHP IntelliSense",
|
|
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
|
"publisher": "felixfbecker",
|
|
"author": "Felix Becker <felix.b@outlook.com>",
|
|
"license": "ISC",
|
|
"private": true,
|
|
"preview": true,
|
|
"version": "0.0.4",
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"keywords": [
|
|
"php",
|
|
"intellisense",
|
|
"autocompletion",
|
|
"help",
|
|
"refactor"
|
|
],
|
|
"categories": [
|
|
"Languages"
|
|
],
|
|
"icon": "images/logo.svg",
|
|
"galleryBanner": {
|
|
"color": "#6682BA",
|
|
"theme": "dark"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/felixfbecker/vscode-php-intellisense.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:php"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "node ./node_modules/vscode/bin/compile -p ./",
|
|
"watch": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"lint": "tslint -c tslint.json \"src/**/*.ts\""
|
|
},
|
|
"devDependencies": {
|
|
"tslint": "^3.15.1",
|
|
"typescript": "^1.8.10",
|
|
"vsce": "^1.8.1",
|
|
"vscode": "^0.11.17"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^2.4.2-next.13"
|
|
}
|
|
}
|