-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.11 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.11 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "tlcsdm-json-tree-view",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.1",
"publisher": "unknowIfGuestInDream",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/tlcsdm/vscode-json-tree-view"
},
"bugs": {
"url": "https://github.com/tlcsdm/vscode-json-tree-view/issues"
},
"homepage": "https://github.com/tlcsdm/vscode-json-tree-view#readme",
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Visualization",
"Other"
],
"keywords": [
"json",
"tree",
"viewer",
"jsonata",
"json5"
],
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:json5"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "tlcsdm.jsonTreeView.open",
"title": "%command.open.title%",
"category": "%command.open.category%",
"icon": "$(list-tree)"
},
{
"command": "tlcsdm.jsonTreeView.copyValue",
"title": "%command.copyValue.title%",
"category": "%command.copyValue.category%"
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId =~ /^json[c5]?$/",
"command": "tlcsdm.jsonTreeView.open",
"group": "navigation"
}
],
"editor/context": [
{
"when": "resourceLangId =~ /^json[c5]?$/",
"command": "tlcsdm.jsonTreeView.open",
"group": "z_commands"
}
],
"explorer/context": [
{
"when": "resourceLangId =~ /^json[c5]?$/",
"command": "tlcsdm.jsonTreeView.open",
"group": "z_commands"
}
]
},
"keybindings": [
{
"command": "tlcsdm.jsonTreeView.open",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j",
"when": "editorLangId =~ /^json[c5]?$/"
}
],
"configuration": {
"title": "%config.title%",
"properties": {
"tlcsdm.jsonTreeView.autoRefresh": {
"type": "boolean",
"default": true,
"description": "%config.autoRefresh.description%"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && node esbuild.mjs",
"check-types": "tsc --noEmit",
"watch": "node esbuild.mjs --watch",
"package": "npm run check-types && node esbuild.mjs --production",
"pretest": "tsc -p ./ && npm run lint",
"lint": "eslint src",
"test": "vscode-test --config ./.vscode-test.json"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.120.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.9.1",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"license": "MIT",
"dependencies": {
"json5": "^2.2.3",
"jsonata": "^2.2.1"
},
"overrides": {
"glob": "^13.0.0",
"serialize-javascript": "^7.0.4",
"diff": "^8.0.3"
}
}