-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.09 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
84
{
"name": "track-changes-in-latex-vscode",
"displayName": "Track Changes in LaTeX — VS Code Extension",
"description": "VS Code extension: create LaTeX-compilable diffs (.tex) from Git Timeline/Explorer and compile to see highlighted changes.",
"version": "2.0.1",
"publisher": "ShirazAhmad",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MShirazAhmad/Track-Changes-in-LaTeX-VSCode"
},
"license": "MIT",
"categories": [
"Other",
"Programming Languages",
"Formatters",
"SCM Providers"
],
"keywords": [
"changes",
"compilable",
"diff",
"extension",
"git",
"latex",
"latexdiff",
"pdf",
"tex",
"timeline",
"vscode"
],
"main": "./out/extension.js",
"icon": "images/icon.png",
"activationEvents": [
"onCommand:latexDiff.generateFromTimeline"
],
"contributes": {
"commands": [
{
"command": "latexDiff.generateFromTimeline",
"title": "Track Changes in LaTeX"
}
],
"menus": {
"scm/resourceState/context": [
{
"command": "latexDiff.generateFromTimeline",
"group": "inline",
"when": "resourceExtname == '.tex'"
}
],
"scm/resourceFolder/context": [
{
"command": "latexDiff.generateFromTimeline",
"group": "1_modification",
"when": "resourceExtname == '.tex'"
}
],
"explorer/context": [
{
"command": "latexDiff.generateFromTimeline",
"group": "2_workspace",
"when": "resourceExtname == '.tex'"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"package:vsix": "vsce package --allow-missing-repository --out track-changes-in-latex-vscode-2.0.1.vsix",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.0.0"
}
}