-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.38 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
{
"name": "pinpoint",
"displayName": "Pinpoint",
"description": "Copy file path with line numbers to clipboard",
"version": "0.1.1",
"license": "MIT",
"publisher": "armand",
"repository": {
"type": "git",
"url": "https://github.com/armandsalle/pinpoint"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"icon": "icon.png",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "pinpoint.copy",
"title": "Pinpoint: Copy File Reference"
}
],
"keybindings": [
{
"command": "pinpoint.copy",
"key": "ctrl+alt+l",
"mac": "cmd+alt+l",
"when": "editorTextFocus"
}
],
"menus": {
"editor/context": [
{
"command": "pinpoint.copy",
"group": "9_cutcopypaste"
}
]
}
},
"scripts": {
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "vsce package --no-dependencies",
"release": "git tag v$(node -p \"require('./package.json').version\") && git push origin v$(node -p \"require('./package.json').version\")"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.24.0",
"typescript": "^5.7.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}