-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "vscode-copy-github-permalink",
"displayName": "vscode-copy-github-permalink",
"description": "Copies GitHub permalink of active file (name and line) to clipboard on VSCode",
"version": "0.3.0",
"engines": {
"vscode": "^1.73.1"
},
"publisher": "hogashi",
"repository": "https://github.com/hogashi/vscode-copy-github-permalink/",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:copy-github-permalink.activate"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "copy-github-permalink.activate",
"title": "Copy GitHub Permalink"
}
],
"menus": {
"editor/context": [
{
"command": "copy-github-permalink.activate",
"group": "9_cutcopypaste@3"
}
]
}
},
"extensionDependencies": [
"vscode.git"
],
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "jest",
"publish-extension": "echo 'visit https://code.visualstudio.com/api/working-with-extensions/publishing-extension'"
},
"devDependencies": {
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/vscode": "1.73.1",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"@vscode/test-electron": "2.2.0",
"eslint": "8.28.0",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"dependencies": {
"normalize-git-url": "^3.0.2",
"upath": "^2.0.1"
}
}