-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
127 lines (127 loc) · 2.79 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "plz-vscode",
"displayName": "Please",
"description": "Integrations for the Please build system",
"author": "[email protected]",
"license": "Apache-2.0",
"icon": "plz_128.png",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/thought-machine/please-vscode"
},
"bugs": {
"url": "https://github.com/thought-machine/please-vscode/issues"
},
"publisher": "please-build",
"categories": [
"Programming Languages",
"Debuggers"
],
"keywords": [],
"engines": {
"vscode": "^1.52.0"
},
"activationEvents": [
"workspaceContains:.plzconfig"
],
"main": "./out/src/main",
"contributes": {
"configuration": {
"type": "object",
"properties": {
"plz.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the Please Language Server."
}
}
},
"languages": [
{
"id": "plz",
"aliases": [
"Please",
"please"
],
"filenames": [
"BUILD"
],
"extensions": [
".plz",
".build_defs",
".build"
],
"configuration": "./syntax/language-configuration.json"
}
],
"grammars": [
{
"language": "plz",
"scopeName": "source.plz",
"path": "./syntax/grammar.json"
}
],
"breakpoints": [
{
"language": "go"
},
{
"language": "python"
}
],
"debuggers": [
{
"type": "plz-go",
"label": "Please Go",
"program": "./out/src/languages/go/debugAdapter.js",
"runtime": "node",
"languages": [
"go"
]
},
{
"type": "plz-python",
"label": "Please Python",
"languages": [
"python"
]
}
]
},
"configurationDefaults": {
"[plz]": {
"editor.insertSpaces": true,
"editor.formatOnSave": true
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b && cp -R scripts/ out/",
"watch": "tsc -b -w",
"prettify": "prettier --write ."
},
"dependencies": {
"clipboardy": "^2.3.0",
"json-rpc2": "^2.0.0",
"semver": "^7.3.5",
"tree-kill": "file:third_party/tree-kill",
"vscode-debugadapter": "^1.47.0",
"vscode-debugprotocol": "^1.47.0",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver-protocol": "^3.16.0"
},
"devDependencies": {
"@types/node": "^15.0.1",
"@types/semver": "^7.3.5",
"@types/vscode": "^1.52.0",
"prettier": "2.3.0",
"typescript": "^4.2.4"
}
}