| { |
| "name": "apache-netbeans-java", |
| "displayName": "Apache Netbeans Java for VSCode", |
| "description": "An Apache NetBeans Java plugin for Visual Studio Code", |
| "author": "Apache NetBeans", |
| "license": "Apache 2.0", |
| "version": "0.1.0", |
| "repository": { |
| "type": "git", |
| "url": "https://github.com/apache/netbeans" |
| }, |
| "publisher": "jlahoda", |
| "categories": [], |
| "keywords": [ |
| "multi-root ready" |
| ], |
| "engines": { |
| "vscode": "^1.47.0" |
| }, |
| "activationEvents": [ |
| "onLanguage:java" |
| ], |
| "main": "./out/extension.js", |
| "contributes": { |
| "configuration": { |
| "title": "Java", |
| "properties": { |
| "netbeans.jdkhome": { |
| "type": [ |
| "string", |
| "null" |
| ], |
| "default": null, |
| "description": "Specifies the JDK on which the Java language server should be run" |
| } |
| } |
| } |
| }, |
| "scripts": { |
| "vscode:prepublish": "npm run compile", |
| "compile": "tsc -p ./", |
| "lint": "eslint src --ext ts", |
| "watch": "tsc -watch -p ./", |
| "pretest": "npm run compile && npm run lint", |
| "test": "node ./out/test/runTest.js" |
| }, |
| "devDependencies": { |
| "@types/vscode": "^1.47.0", |
| "@types/glob": "^7.1.1", |
| "@types/mocha": "^7.0.2", |
| "@types/node": "^13.11.0", |
| "glob": "^7.1.6", |
| "mocha": "^7.1.2", |
| "typescript": "^3.8.3", |
| "vscode-test": "^1.3.0" |
| }, |
| "dependencies": { |
| "vscode-languageclient": "4.4.2", |
| "vscode-debugadapter": "1.33.0" |
| } |
| } |