-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
152 lines (152 loc) · 3.31 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "vscode-modx",
"displayName": "IntelliSense for MODX",
"description": "Intelligent MODX, pdoTools and fenom tooling for VS Code",
"author": {
"name": "Gulomov Bakhtovar",
"email": "[email protected]",
"url": "https://codesolution.io"
},
"license": "MIT",
"version": "1.0.6",
"homepage": "https://github.com/GulomovCreative/vscode-modx",
"bugs": {
"url": "https://github.com/GulomovCreative/vscode-modx/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/GulomovCreative/vscode-modx.git"
},
"publisher": "gulomov",
"keywords": [
"modx",
"modxrevolution",
"modxcms",
"fenom",
"pdotools",
"minishop2",
"intellisense",
"autocomplete",
"vscode"
],
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#2d3442",
"theme": "dark"
},
"icon": "media/modx.png",
"activationEvents": [
"onLanguage",
"onStartupFinished"
],
"main": "./out/extension.js",
"capabilities": {
"virtualWorkspaces": {
"supported": "limited",
"description": "In virtual workspaces, resolving and finding references across files is not supported."
}
},
"l10n": "./l10n",
"contributes": {
"languages": [
{
"id": "modx",
"aliases": [
"MODX",
"modx"
],
"extensions": [
".tpl",
".html"
],
"configuration": "./languages/modx-configuration.json",
"icon": {
"light": "media/modx.png",
"dark": "media/modx.png"
}
},
{
"id": "fenom",
"aliases": [
"Fenom",
"fenom"
],
"extensions": [
".tpl",
".html"
],
"configuration": "./languages/fenom-configuration.json",
"icon": {
"light": "media/fenom.png",
"dark": "media/fenom.png"
}
}
],
"grammars": [
{
"language": "modx",
"scopeName": "text.html.modx",
"path": "./languages/modx.tmLanguage.json"
},
{
"language": "fenom",
"scopeName": "text.html.fenom",
"path": "./languages/fenom.tmLanguage.json"
}
],
"configuration": {
"title": "MODX IntelliSense",
"properties": {
"vscode-modx.elementsPath": {
"type": "string",
"default": "/core/elements/",
"description": "%vscode-modx.elementsPath.description%"
}
}
},
"htmlLanguageParticipants": [
{
"languageId": "modx",
"autoInsert": true
},
{
"languageId": "fenom",
"autoInsert": true
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"build": "tsc -p ./",
"package": "vsce package",
"publish": "vsce publish",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/json5": "^2.2.0",
"@types/lodash": "^4.14.199",
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vscode/l10n-dev": "^0.0.29",
"esbuild": "^0.19.5",
"eslint": "^8.26.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@vscode/l10n": "^0.0.16",
"json5": "^2.2.3",
"lodash": "^4.17.21"
}
}