-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.04 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.04 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "git-diffy",
"displayName": "Git Log by Diffy",
"description": "A Git log explorer for Visual Studio Code.",
"version": "0.1.46",
"publisher": "diffy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pallab-gain/diffy.git"
},
"homepage": "https://github.com/pallab-gain/diffy#readme",
"bugs": {
"url": "https://github.com/pallab-gain/diffy/issues"
},
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"SCM Providers"
],
"keywords": [
"git",
"log",
"history",
"compare",
"diff",
"branches"
],
"icon": "media/icon-128.png",
"main": "./dist/extension.js",
"activationEvents": [
"onCommand:diffy.showLog",
"onCommand:diffy.openFileAndRevealFromDiff"
],
"contributes": {
"commands": [
{
"command": "diffy.showLog",
"title": "Diffy: Show Log",
"icon": {
"light": "media/diffy-light.svg",
"dark": "media/diffy-dark.svg"
}
},
{
"command": "diffy.refreshLog",
"title": "Diffy: Refresh Log"
},
{
"command": "diffy.openFileAndRevealFromDiff",
"title": "Diffy: Open File and Reveal in Explorer",
"icon": {
"light": "media/open-file-light.svg",
"dark": "media/open-file-dark.svg"
}
}
],
"menus": {
"editor/title": [
{
"command": "diffy.showLog",
"group": "navigation@100"
},
{
"command": "diffy.openFileAndRevealFromDiff",
"when": "resourceScheme == diffy-git && isInDiffEditor",
"group": "navigation@101"
}
]
},
"configuration": {
"title": "Diffy",
"properties": {
"diffy.defaultRef": {
"type": "string",
"default": "HEAD",
"description": "Default ref to show when Diffy opens."
},
"diffy.maxCommitsPerPage": {
"type": "number",
"default": 200,
"minimum": 20,
"maximum": 2000,
"description": "Maximum number of commits to load into the log per page."
},
"diffy.dateFormat": {
"type": "string",
"default": "relative",
"enum": [
"relative",
"absolute"
],
"description": "Date format used in the log and details pane."
}
}
}
},
"scripts": {
"build": "node scripts/build.mjs",
"watch": "node scripts/build.mjs --watch",
"typecheck": "tsc -p . --noEmit",
"test": "npm run build && npm run typecheck",
"vscode:prepublish": "npm run build",
"package-it": "vsce package"
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/node": "^20.11.30",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/vscode": "^1.90.0",
"esbuild": "^0.25.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.7.3"
},
"dependencies": {
"@vscode/vsce": "^3.7.1",
"luxon": "^3.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}