aqua-vscode/package.json
folex 589238f7a5
fix(deps): update vscode to 1.94.0 (#125)
fix(deps): vscode 1.94.0 compatibility
2024-10-07 12:28:48 +07:00

157 lines
5.4 KiB
JSON

{
"name": "aqua",
"displayName": "Aqua",
"description": "Aqua language support powered by the Aqua Language Server",
"author": "Fluence Labs",
"version": "1.1.0",
"publisher": "FluenceLabs",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/fluencelabs/aqua"
},
"categories": [
"Programming Languages"
],
"keywords": [
"aqua vscode extension"
],
"engines": {
"vscode": "1.94.0"
},
"activationEvents": [
"onLanguage:aqua"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "aqua",
"aliases": [
"aqua"
],
"extensions": [
".aqua"
],
"configuration": "./language-configurations/aqua.json"
},
{
"id": "air",
"aliases": [
"AIR"
],
"extensions": [
".air"
],
"configuration": "./language-configurations/air.json"
}
],
"grammars": [
{
"language": "aqua",
"scopeName": "source.aqua",
"path": "./syntaxes/aqua.tmLanguage.json"
},
{
"language": "air",
"scopeName": "source.air",
"path": "./syntaxes/air.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Aqua",
"properties": {
"aquaSettings.imports": {
"definitions": {
"legacyImports": {
"description": "Legacy format of imports - just an array of paths",
"type": "array",
"items": {
"type": "string"
}
},
"structuredImports": {
"description": "Structured format of imports - dict of settings for path prefixes",
"type": "object",
"additionalProperties": {
"description": "Settings for path prefix - dict of locations for import prefixes",
"type": "object",
"additionalProperties": {
"description": "Location for import prefix",
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
}
}
},
"scope": "resource",
"type": [
"object",
"array"
],
"if": {
"type": "object"
},
"then": {
"$ref": "#/definitions/structuredImports"
},
"else": {
"$ref": "#/definitions/legacyImports"
},
"default": {},
"description": "Adds imports for aqua file or project"
},
"aquaSettings.fluencePath": {
"scope": "resource",
"type": [
"string",
"null"
],
"default": null,
"description": "Path to fluence CLI executable"
},
"aquaSettings.fluenceCallDelay": {
"scope": "resource",
"type": "number",
"default": 5000,
"description": "Minimal delay (ms) between calls to fluence CLI (for one file)"
}
}
}
},
"scripts": {
"before-tests": "bash integration-tests/before-tests.sh",
"test": "npm run compile && vscode-test",
"test:unit": "npm run test -C server",
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@tsconfig/node16-strictest": "1.0.4",
"@types/mocha": "9.1.1",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@vscode/test-cli": "0.0.9",
"@vscode/test-electron": "2.4.1",
"@types/vscode": "1.94.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"mocha": "9.2.2",
"prettier": "2.6.2",
"typescript": "4.9.5"
}
}