-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.16 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
{
"icon": "media/logo.png",
"name": "upbound",
"displayName": "Upbound",
"preview": true,
"publisher": "upboundio",
"version": "0.0.6",
"description": "Crossplane package support for Visual Studio Code",
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/upbound/vscode-up"
},
"bugs": {
"url": "https://github.com/upbound/vscode-up/issues"
},
"activationEvents": [
"workspaceContains:crossplane.yaml",
"workspaceContains:*/crossplane.yaml",
"workspaceContains:*/*/crossplane.yaml",
"workspaceContains:upbound.yaml",
"workspaceContains:*/upbound.yaml",
"workspaceContains:*/*/upbound.yaml"
],
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages",
"Linters",
"Formatters"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"bundle": "esbuild extension.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node",
"bundle-dev": "npm run bundle -- --sourcemap",
"bundle-watch": "npm run bundle -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"compile": "npm run bundle",
"deploy": "vsce publish --yarn"
},
"contributes": {
"configuration": {
"type": "object",
"title": "xpls",
"properties": {
"xpls.up.path": {
"scope": "workspace",
"type": "string",
"default": "up",
"description": "Path to the up CLI, requires a MANUAL WINDOW RELOAD to be effective."
},
"xpls.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"xpls.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"author": "Upbound",
"license": "Apache-2.0",
"dependencies": {
"vscode-languageclient": "^6.1.3"
},
"devDependencies": {
"@types/node": "^10.1.4",
"@types/vscode": "^1.35.0",
"esbuild": "0.12.21",
"typescript": "^3.9.10",
"vsce": "^1.103.1",
"vscode": "^1.1.35"
}
}