-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
72 lines (71 loc) · 1.83 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
{
"name": "definition-stack",
"displayName": "Definition Stack",
"description": "Show function definitions linked in a stack.",
"publisher": "eridien",
"version": "1.0.5",
"repository": {
"type": "git",
"url": "https://github.com/eridien/vscode-definition-stack"
},
"license": "MIT",
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "definition-stack.openwebview",
"title": "Definition Stack: Open"
}
],
"keybindings": [
{
"command": "definition-stack.openwebview",
"key": "ctrl+shift+alt+p",
"mac": "cmd+shift+alt+p"
}
],
"configuration": {
"title": "Definition Stack Settings",
"properties": {
"definition-stack.ignoreFilePatterns": {
"type": "string",
"default": "node_modules, \\.d\\.ts$",
"description": "Patterns of files to ignore. Seperate with commas. To enter a comma use two commas together. RegExp patterns are allowed."
},
"definition-stack.entireFileOk": {
"type": "boolean",
"default": true,
"description": "Allow entire file contents to be shown. Not recommended if you have large files."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.97.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.23.0",
"eslint-plugin-promise": "^7.2.1"
},
"dependencies": {
"prismjs": "^1.29.0",
"reserved-words": "^0.1.2"
}
}