-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.22 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
{
"name": "otel-validator",
"displayName": "Open Telemetry (OTEL) Validator",
"description": "OTEL Configuration Autocomplete and Validation",
"publisher": "nimbushq",
"version": "1.0.0",
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Linters",
"Formatters",
"Other"
],
"keywords": [
"open telemetry",
"otel",
"config validator",
"observability"
],
"icon": "media/logo.png",
"activationEvents": [
"onLanguage:yaml"
],
"main": "./dist/web/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/nimbushq/otel-validator.git"
},
"license": "Apache-2.0",
"pricing": "Free",
"browser": "./dist/web/extension.js",
"extensionDependencies": [
"redhat.vscode-yaml"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "otel-validator.showViz",
"title": "OTEL Validator: Show Viz"
}
],
"yamlValidation": [
{
"fileMatch": "otel*.yml",
"url": "./dist/schema.json"
},
{
"fileMatch": "otel*.yaml",
"url": "./dist/schema.json"
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "yarn run compile-web",
"vscode:prepublish": "yarn run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"package": "vsce package --yarn",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/vscode": "^1.81.0",
"@types/webpack-env": "^1.18.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-web": "^0.0.44",
"assert": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.41.0",
"mocha": "^10.2.0",
"process": "^0.11.10",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1"
}
}