forked from ChelseaKR/tods-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "tods-validate",
"displayName": "TODS Validate",
"description": "Inline validation for Transit Operational Data Standard (TODS) feeds, powered by the tods-validate language server.",
"version": "0.1.0",
"publisher": "tods-validate",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ChelseaKR/tods-validate"
},
"homepage": "https://github.com/ChelseaKR/tods-validate/tree/main/editor/vscode",
"bugs": {
"url": "https://github.com/ChelseaKR/tods-validate/issues"
},
"keywords": [
"transit",
"TODS",
"ODS",
"GTFS",
"validator"
],
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Linters",
"Programming Languages"
],
"activationEvents": [
"workspaceContains:**/run_events.txt",
"workspaceContains:**/vehicle_assignments.txt"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "TODS Validate",
"properties": {
"tods-validate.serverPath": {
"type": "string",
"default": "tods-validate-lsp",
"description": "Path to the tods-validate-lsp executable. Install it with pipx install 'tods-validate[lsp]', or provide its full path here."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"check": "tsc -p ./ --noEmit",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.75.0",
"@vscode/vsce": "^3.0.0",
"typescript": "^5.4.0"
}
}