Files
testium_assist/package.json
François d05595dc74 Add VERSION file as the single source for the extension version
Mirrors testium's src/VERSION: scripts/sync-version.js copies VERSION into
package.json#version (enforcing strict semver X.Y.Z, required by the marketplace
/ Open VSX). Wired into 'npm run package' and vscode:prepublish, so the version
is always synced before a build/publish. Bump = edit VERSION.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-30 14:44:59 +02:00

81 lines
2.1 KiB
JSON

{
"name": "testium-assist",
"displayName": "Testium Assist",
"description": "Language support for testium .tum test scripts. Completion, hover and diagnostics powered by the testium LSP server (`testium lsp`).",
"version": "0.1.0",
"publisher": "testium",
"license": "EUPL-1.2",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://git.beafrancois.fr/v-and-v/testium_assist.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:tum"
],
"contributes": {
"languages": [
{
"id": "tum",
"aliases": [
"Testium TUM",
"tum"
],
"extensions": [
".tum"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "tum",
"scopeName": "source.tum",
"path": "./syntaxes/tum.tmLanguage.json"
}
],
"configuration": {
"title": "Testium Assist",
"properties": {
"testium.serverPath": {
"type": "string",
"default": "testium",
"description": "Path to the testium executable used to start the language server (`<path> lsp`). Defaults to looking up `testium` on $PATH."
},
"testium.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Trace the LSP communication between VSCode and the testium server in the Output panel."
}
}
}
},
"scripts": {
"sync-version": "node scripts/sync-version.js",
"compile": "tsc -p .",
"watch": "tsc -p . --watch",
"package": "npm run sync-version && npx --yes @vscode/vsce package",
"vscode:prepublish": "npm run sync-version && npm run compile"
},
"dependencies": {
"vscode-languageclient": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/vscode": "^1.80.0",
"typescript": "^5.4.0"
}
}