-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.18 KB
/
package.json
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
{
"name": "turbotranscriber",
"displayName": "TurboTranscriber Language Extension",
"description": "TurboTranscriber Language Extension",
"author": "Balduin Landolt",
"repository": {
"type": "git",
"url": "https://github.com/BalduinLandolt/vscode-ttr-language-extension"
},
"license": "MIT",
"version": "0.0.0",
"publisher": "BalduinLandolt",
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:ttr"
],
"contributes": {
"commands": [
{
"command": "progress",
"title": "Start the progress"
}
],
"configuration": {
"type": "object",
"title": "TTR Configuration",
"properties": {
"ttr.exampleConfiguration": {
"scope": "resource",
"type": "string",
"default": "You can override this message."
}
}
},
"languages": [
{
"id": "ttr",
"aliases": [
"TurboTranscriber Raw Transcription",
"TurboTranscriberRaw",
"ttr",
".ttr"
],
"extensions": [
".ttr"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ttr",
"scopeName": "text.turbotranscriber.raw",
"path": "./syntaxes/ttr.tmLanguage.json"
}
]
},
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.23.0",
"typescript": "^4.2.4"
},
"dependencies": {
"vscode-languageclient": "^7.0.0"
}
}