-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "translation-notes-extension",
"displayName": "translation-notes-extension",
"description": "A vscode extension to open translation note tsv files and display them for a specific verse",
"version": "0.0.1",
"engines": {
"vscode": "^1.75.0"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "translation-notes-extension.openTnEditor",
"title": "Show Translation Notes"
}
],
"customEditors": [
{
"viewType": "translation-notes-extension.translationNotesEditor",
"displayName": "Translation Note TSV Editor",
"selector": [
{
"filenamePattern": "*.tsv"
}
],
"priority": "default"
}
]
},
"scripts": {
"install:all": "pnpm install && cd webview-ui && pnpm install",
"start:webview": "cd webview-ui && pnpm run start",
"build:webview": "cd webview-ui && pnpm run build",
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "^12.11.7",
"@types/vscode": "^1.46.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"glob": "^7.1.6",
"prettier": "^2.2.1",
"typescript": "^5.3.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.35",
"bible-reference-range": "^1.1.1"
}
}