solang 0.2.1

Solang Solidity Compiler
Documentation
{
	"name": "solang",
	"displayName": "Solang Solidity Compiler",
	"description": "Use the solang compiler for syntax highlighting, compiler warnings and errors, and hovers",
	"publisher": "solang",
	"icon": "hl_solang.png",
	"author": "Shivam Balikondwar <shivambalikondwar@icloud.com>",
	"version": "0.3.2",
	"repository": "github.com/hyperledger/solang",
	"engines": {
		"vscode": "^1.43.0"
	},
	"categories": [
		"Other"
	],
	"activationEvents": [
		"onLanguage:solidity"
	],
	"main": "./out/client/extension.js",
	"contributes": {
		"configuration": {
			"type": "object",
			"title:": "Solang Solidity Compiler",
			"properties": {
				"solang.target": {
					"scope": "window",
					"type": "string",
					"enum": [
						"solana",
						"substrate",
						"evm"
					],
					"default": "solana",
					"description": "Chain to build for. The Solidity language changes in subtle ways depending on the target."
				},
				"solang.updates.askBeforeDownload": {
					"type": "boolean",
					"default": false,
					"description": "Whether to ask for permission before downloading any files from the Internet"
				},
				"solang.forceSolangExecutable": {
					"type": "string",
					"default": "",
					"description": "Use the executable at this path and do not download or update solang. Leave this empty for automatic download."
				}
			}
		},
		"capabilities": {
			"hoverProvider": "true"
		},
		"languages": [
			{
				"id": "solidity",
				"aliases": [
					"Solidity",
					"solidity"
				],
				"extensions": [
					".sol"
				],
				"configuration": "./solidity.configuration.json"
			}
		],
		"snippets": [
			{
				"language": "solidity",
				"path": "./snippets/solidity.json"
			}
		],
		"grammars": [
			{
				"language": "solidity",
				"scopeName": "source.solidity",
				"path": "./syntaxes/solidity.json"
			}
		]
	},
	"scripts": {
		"vscode:prepublish": "npm run compile",
		"compile": "tsc -p ./",
		"lint": "eslint src --ext ts",
		"lint:fix": "eslint src --ext ts --fix",
		"watch": "tsc -watch -p ./",
		"test": "NODE_ENV=test node ./out/test/runTest.js"
	},
	"dependencies": {
		"node-fetch": "^2.6.1",
		"semver": "^7.3.5",
		"vsce": "^1.103.1",
		"vscode-languageclient": "^6.1.3",
		"vscode-languageserver": "^6.1.1",
		"vscode-languageserver-protocol": "=3.15.3"
	},
	"devDependencies": {
		"@types/glob": "^7.1.1",
		"@types/mocha": "^7.0.2",
		"@types/node": "^12.12.0",
		"@types/node-fetch": "^2.5.8",
		"@types/semver": "^7.3.8",
		"@types/vscode": "^1.43.0 <1.69.0",
		"@typescript-eslint/eslint-plugin": "^4.15.0",
		"@typescript-eslint/parser": "^4.15.0",
		"@vscode/test-electron": "^1.6.2",
		"eslint": ">=7.0.0",
		"glob": "^7.1.6",
		"mocha": "^7.1.2",
		"typescript": "^3.8.3"
	},
	"__metadata": {
		"id": "3134b20d-911a-4418-a461-3f2380f4a1c2",
		"publisherDisplayName": "Hyperledger Solang",
		"publisherId": "6c1a8c6d-5493-4493-81d2-e899244f0def",
		"isPreReleaseVersion": false
	}
}