-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.64 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
{
"name": "robust-yaml",
"displayName": "Robust YAML",
"publisher": "slava0135",
"author": {
"name": "slava0135",
"url": "https://github.com/Slava0135"
},
"license": "MIT",
"description": "Extended YAML support for Robust Toolbox",
"version": "0.2.1",
"engines": {
"vscode": "^1.90.0"
},
"icon": "showcase/icon.png",
"galleryBanner": {
"color": "#001433",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"YAML",
"C#",
"Game Development",
"Robust Toolbox",
"Space Station 14"
],
"bugs": {
"url": "https://github.com/Slava0135/vscode-robust-yaml/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Slava0135/vscode-robust-yaml.git"
},
"homepage": "https://github.com/Slava0135/vscode-robust-yaml/blob/master/README.md",
"activationEvents": [
"onLanguage:yaml"
],
"main": "./out/extension.js",
"contributes": {
"capabilities": {
"hoverProvider": true,
"definitionProvider": true,
"documentSemanticTokensProvider": true,
"completionItemProvider": true
},
"configuration": {
"title": "Robust YAML",
"properties": {
"Robust YAML.logger.loggingLevel": {
"type": "string",
"default": "Info",
"enum": [
"Error",
"Warn",
"Info",
"Debug"
],
"description": "Specifies logging level."
}
}
}
},
"configurationDefaults": {
"yaml": {
"editor.semanticHighlighting.enabled": true
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"test-unit": "mocha --require ts-node/register 'src/**/*.test.ts'"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.23.1",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"minimatch": "^10.0.1",
"winston": "^3.14.2",
"yaml": "^2.5.0"
}
}