-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.95 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
{
"name": "hydra-vscode",
"displayName": "Hydra + OmegaConf for VS Code",
"description": "YAML syntax highlighting, goto-definition, hover, and diagnostics for Hydra config composition and OmegaConf interpolation.",
"version": "0.1.1",
"publisher": "timkpaine",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nbprint/hydra-vscode"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"keywords": [
"hydra",
"omegaconf",
"yaml",
"config",
"interpolation"
],
"activationEvents": [
"onLanguage:yaml",
"onLanguage:hydra-yaml",
"workspaceContains:**/*.yaml"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "hydra-yaml",
"aliases": [
"Hydra YAML",
"hydra-yaml"
],
"extensions": [
".yaml",
".yml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hydra-yaml",
"scopeName": "source.hydra-yaml",
"path": "./syntaxes/hydra-yaml.tmLanguage.json"
}
],
"configuration": {
"title": "Hydra + OmegaConf",
"properties": {
"hydra.configSearchPaths": {
"type": "array",
"default": [
"conf",
"config",
"configs"
],
"description": "Directories to search for Hydra config files (relative to workspace root)."
},
"hydra.enableDiagnostics": {
"type": "boolean",
"default": true,
"description": "Enable lint diagnostics for OmegaConf interpolation errors."
},
"hydra.enableHover": {
"type": "boolean",
"default": true,
"description": "Enable hover information for OmegaConf interpolations."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --production",
"esbuild-base": "node esbuild.js",
"esbuild": "node esbuild.js",
"esbuild-watch": "node esbuild.js --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"test:unit": "mocha --require ts-node/register 'src/test/unit/**/*.test.ts'",
"package": "vsce package"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.0",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"esbuild": "^0.27.3",
"eslint": "^8.56.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vscode-tmgrammar-test": "^0.1.3"
},
"dependencies": {
"yaml": "^2.3.4"
}
}