-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "npm-dependency-links",
"displayName": "npm Dependency Links",
"description": "Go to npm site of your dependencies",
"version": "1.3.0",
"publisher": "herrmannplatz",
"icon": "npm_icon.png",
"repository": {
"type": "git",
"url": "https://github.com/herrmannplatz/npm-dependency-links.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"type": "object",
"title": "NPM Dependency Links Configuration",
"properties": {
"npmDependencyLinks.registryUrl": {
"type": "string",
"default": "https://www.npmjs.com/package/",
"description": "Registry URL to be used for package link."
},
"npmDependencyLinks.registryUrlPattern": {
"type": "string",
"default": "",
"markdownDescription": "Registry URL pattern to be used for package link.\n Example: `http://myCustomRegistry/{{pkg}}/package?queryparams`. \nTakes priority over `#npmDependencyLinks.registryUrl#` if set."
}
}
}
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^20",
"@types/vscode": "^1.73.0",
"eslint": "^9.13.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}