-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vetri-lang",
"displayName": "vetri Language Support",
"description": "Syntax highlighting and LSP support for vetri (வெற்றி), the Tamil-syntax programming language.",
"version": "0.2.1",
"publisher": "tvkvolunteers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tvkvolunteers/vetri.git"
},
"bugs": {
"url": "https://github.com/tvkvolunteers/vetri/issues"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"vetri",
"tamizhl",
"programming language",
"தமிழ்"
],
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:vetri"
],
"contributes": {
"languages": [
{
"id": "vetri",
"aliases": ["vetri", "vetri", "வெற்றி"],
"extensions": [".vetri"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "vetri",
"scopeName": "source.vetri",
"path": "./syntaxes/vetri.tmLanguage.json"
}
],
"configuration": {
"title": "vetri",
"properties": {
"vetri.serverPath": {
"type": "string",
"default": "",
"description": "Custom path to the vetri binary. Leave empty to use the bundled binary."
},
"vetri.trace.server": {
"type": "string",
"enum": ["off", "messages", "verbose"],
"default": "off",
"description": "Trace LSP communication between VS Code and the vetri language server."
}
}
}
},
"scripts": {
"sync-version": "node ./scripts/bump-version.js",
"version-changelog": "standard-changelog",
"vscode:prepublish": "npm run build-lsp && npm run compile",
"build-lsp": "node ./scripts/build-lsp.js",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.0.0",
"standard-changelog": "^8.1.0",
"typescript": "^5.3.0"
}
}