-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.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
{
"name": "vscode-git-line-diffs",
"publisher": "astahmer",
"displayName": "Git Line Diffs",
"version": "0.0.2",
"private": true,
"main": "./out/extension.js",
"repository": {
"url": "https://github.com/astahmer/vscode-git-line-diffs"
},
"engines": {
"vscode": "^1.95.0"
},
"activationEvents": ["onStartupFinished"],
"contributes": {
"commands": [
{
"command": "git-line-diffs.openDashboard",
"title": "GitLineDiffs: Open Dashboard"
}
]
},
"files": ["out", "package.json", "LICENSE", "assets", "README.md"],
"scripts": {
"vscode:prepublish": "pnpm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"fmt": "biome format --write",
"lint": "biome lint --write",
"package": "pnpm vsce package --allow-unused-files-pattern",
"vsce:publish": "pnpm vsce publish --allow-unused-files-pattern"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.1",
"typescript": "^5.7.2"
},
"icon": "assets/logo.png",
"categories": ["Programming Languages", "Visualization", "Other"],
"keywords": [
"git",
"line",
"diff",
"changes",
"addition",
"deletion",
"commit"
],
"license": "MIT"
}