-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.47 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
{
"name": "vsc-links",
"displayName": "VSC Links",
"version": "2.5.1",
"description": "Create any links to files and websites based on patterns.",
"categories": [
"Other"
],
"keywords": [
"links",
"tool",
"url"
],
"homepage": "https://github.com/web-dev-sam/vsc-links#readme",
"bugs": {
"url": "https://github.com/web-dev-sam/vsc-links/issues",
"email": "sam@webry.com"
},
"license": "MIT",
"author": "Samuel Braun <sam@webry.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/web-dev-sam/vsc-links"
},
"publisher": "webry",
"main": "./out/main.js",
"scripts": {
"watch": "tsc -watch -p ./",
"check": "tsc -p ./",
"lint": "oxlint .",
"fmt": "oxfmt .",
"dev": "node build.mjs",
"vscode:prepublish": "pnpm run compile",
"compile": "node build.mjs --minify",
"test": "vscode-test",
"pretest": "node build.mjs --tests",
"prepack": "vsce package --pre-release --no-dependencies",
"prepubl": "vsce publish --pre-release --no-dependencies",
"rel": "vsce publish --no-dependencies"
},
"dependencies": {
"c12": "^3.3.4",
"minimatch": "^10.2.5",
"uuid": "^14.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^24.13.3",
"@types/vscode": "^1.90.0",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0",
"@vscode/vsce": "^3.9.2",
"esbuild": "^0.28.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.24.0",
"typescript": "^7.0.2",
"vscl": "^2.3.1"
},
"contributes": {
"commands": [
{
"command": "vsc-links.createConfig",
"title": "VSC Links: Create Config File"
},
{
"command": "vsc-links.restartVSCodeLinks",
"title": "VSC Links: Restart"
},
{
"command": "vsc-links.refreshVSCodeLinksProviders",
"title": "VSC Links: Refresh Config"
}
]
},
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"workspace"
],
"icon": "icon.png",
"engines": {
"vscode": "^1.90.0"
},
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Using VSCode Links is not possible in virtual workspaces."
},
"untrustedWorkspaces": {
"supported": false,
"description": "VSCode Links requires workspace trust because it loads configuration files and code from the workspace and executes it."
}
}
}