-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.84 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
{
"publisher": "Crestron",
"icon": "images/icon.png",
"license": "SEE LICENSE IN LICENSE.txt",
"displayName": "Crestron Components",
"engines": {
"vscode": "^1.40.0"
},
"repository": {
"repository": {
"url": "",
"type": "git"
}
},
"devDependencies": {
"tslint": "^5.8.0",
"through2": "^2.0.3",
"@types/micromatch": "^3.1.0",
"@types/parse-glob": "^3.0.29",
"@types/mocha": "^2.2.42",
"@types/vscode": "^1.40.0",
"typescript": "^4.5.5",
"rimraf": "^3.0.2",
"@types/request": "^2.47.1",
"@types/node": "^8.10.10",
"@types/readdir-enhanced": "^2.2.0",
"@vscode/test-electron": "^2.1.2"
},
"activationEvents": [
"*"
],
"name": "crestroncomponents",
"version": "2.6.1",
"contributes": {
"commands": [
{
"category": "Crestron",
"command": "_ch5.updateMetaData",
"title": "Update Metadata"
}
],
"configuration": {
"type": "object",
"properties": {
"ch5.showErrors": {
"default": true,
"type": "boolean",
"description": "Allows to display errors."
},
"ch5.sourceURL": {
"default": "https://siproducts.blob.core.windows.net/ch5-ext-release/schema.json",
"type": "string",
"description": "Source URL of meta-data where are stored snippets, completions and hover documentation"
},
"ch5.stringDistanceRatingAllowance": {
"default": 0.3,
"scope": "resource",
"type": "number",
"description": "Controls the string distance rating allowed for diagnostic attributes. Should be in range from 0 to 1, the higher the value, the stricter the detection."
},
"ch5.customAttributesInclude": {
"default": [
"*ch5*"
],
"items": {
"type": "string"
},
"type": "array",
"description": "List of patterns for custom ch5 attributes that are included when diagnostics are provided."
},
"ch5.maxNumberOfProblems": {
"default": 100,
"scope": "resource",
"type": "number",
"description": "Controls the maximum number of problems produced by the server."
}
},
"title": "CH5 configuration"
}
},
"dependencies": {
"vscode-languageclient": "^7.0.0",
"string-similarity": "^4.0.4",
"json-schema-to-typescript": "^5.5.0",
"request": "^2.87.0",
"micromatch": "^4.0.4",
"ajv": "^8.10.0",
"vsce": "^1.95.1",
"vscode-html-languageservice": "^4.0.7",
"vscode-languageserver-textdocument": "^1.0.4",
"vscode-languageserver": "^7.0.0"
},
"scripts": {
"generate-metadata": "./node_modules/.bin/json2ts ./schema/metadata.schema.json ./src/types/metadata.ts",
"watch": "tsc -watch -p ./",
"compile": "npm run clean && tsc -p ./",
"generate-package": "node ./build/packages.js",
"clean": "rimraf out",
"vscode:prepublish": "npm run compile"
},
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"main": "./out/extension.js",
"categories": [
"Snippets"
],
"description": "Syntax, code completion, validation, and help for Crestron Components"
}