This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
186 lines (186 loc) · 4.73 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"name": "recore",
"description": "Recore support for Visual Studio Code",
"version": "0.1.18",
"license": "MIT",
"displayName": "Recore",
"publisher": "alixux",
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile:client": "tsc -p ./client/tsconfig.json",
"compile:server": "tsc -p ./server/tsconfig.json",
"watch": "npm run watch:client && npm run watch:server",
"watch:client": "tsc -w -p ./client/tsconfig.json",
"watch:server": "tsc -w -p ./server/tsconfig.json",
"compile": "rm -rf client/node_modules/vscode/vscode.d.ts; npm run compile:client && npm run compile:server",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"pkg": "vsce package --yarn"
},
"dependencies": {
"@types/rimraf": "^2.0.3",
"@types/semver": "^6.2.0",
"rimraf": "^3.0.0"
},
"devDependencies": {
"@types/node": "^7.10.9",
"tslint": "^5.8.0",
"typescript": "^3.6.4",
"vsce": "^1.69.0"
},
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:visionx",
"onLanguage:apits",
"onCommand:recore.createPageOrComp",
"onCommand:recore.survey"
],
"repository": {
"type": "git",
"url": "https://github.com/recore/vscode-recore.git"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"contributes": {
"languages": [
{
"id": "visionx",
"aliases": [
"Recore VisionX",
"visionx",
"VisionX"
],
"extensions": [
".vx",
".vsx"
],
"configuration": "./languages/visionx.json"
},
{
"id": "apits",
"aliases": [
"apits",
"api.ts"
],
"extensions": [
".api.ts"
],
"configuration": "./languages/typescript.json"
}
],
"grammars": [
{
"language": "visionx",
"scopeName": "text.html.visionx",
"path": "./syntaxes/visionx.tmLanguage.json"
},
{
"language": "apits",
"scopeName": "source.ts",
"path": "./syntaxes/TypeScript.tmLanguage.json",
"tokenTypes": {
"entity.name.type.instance.jsdoc": "other",
"entity.name.function.tagged-template": "other",
"meta.import string.quoted": "other",
"variable.other.jsdoc": "other"
}
}
],
"iconThemes": [
{
"id": "recore-icons",
"label": "Recore Icons",
"path": "./iconThemes/recore-icons.json"
}
],
"configuration": {
"type": "object",
"title": "plugin configuration",
"properties": {
"recore.autoTag.activationOnLanguage": {
"type": "array",
"default": [
"visionx"
],
"description": "Set the languages that the extension will be activated.",
"scope": "resource"
},
"recore.autoTag.excludedTags": {
"type": "array",
"default": [
"area",
"base",
"br",
"col",
"command",
"embed",
"hr",
"img",
"input",
"keygen",
"link",
"meta",
"param",
"source",
"RouterView",
"track",
"wbr"
],
"description": "Set the tag list that would not be auto closed.",
"scope": "resource"
},
"recore.autoTag.enableAutoCloseTag": {
"type": "boolean",
"default": true,
"description": "Whether to insert close tag automatically",
"scope": "resource"
},
"recore.autoTag.enableAutoCloseSelfClosingTag": {
"type": "boolean",
"default": true,
"description": "Whether to close self-closing tag automatically",
"scope": "resource"
}
}
},
"snippets": [
{
"language": "visionx",
"path": "./snippets/visionx.json"
},
{
"language": "apits",
"path": "./snippets/typescript.json"
}
],
"commands": [
{
"command": "recore.createPageOrComp",
"title": "创建Recore页面/组件"
},
{
"command": "recore.survey",
"title": "Recore用户调查"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "recore.createPageOrComp",
"group": "Recore"
}
]
}
},
"__npminstall_done": false
}