-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 2.75 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
128
129
{
"name": "bitcoin",
"displayName": "Bitcoin",
"description": "Bitcoin LSP",
"author": "Kevin Kelbie",
"license": "MIT",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/Kelbie/vscode-bitcoin"
},
"icon": "bitcoin.png",
"publisher": "bitcoin",
"categories": [],
"keywords": [
"bitcoin"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:script",
"onLanguage:miniscript"
],
"main": "./client/out/extension",
"contributes": {
"snippets": [
{
"language": "script",
"path": "./snippets/script.snippet.json"
},
{
"language": "miniscript",
"path": "./snippets/miniscript.snippet.json"
},
{
"language": "miniscript.policy",
"path": "./snippets/miniscript.policy.snippet.json"
}
],
"languages": [
{
"id": "script",
"aliases": [
"script"
],
"extensions": [
"script"
],
"configuration": "./languages/script.language.json"
},
{
"id": "miniscript",
"aliases": [
"miniscript"
],
"extensions": [
"miniscript"
],
"configuration": "./languages/miniscript.language.json"
},
{
"id": "miniscript.policy",
"aliases": [
"miniscript.policy"
],
"extensions": [
"policy.miniscript"
],
"configuration": "./languages/miniscript.policy.language.json"
}
],
"grammars": [
{
"language": "script",
"scopeName": "source.script",
"path": "./grammars/script.grammar.json"
},
{
"language": "miniscript",
"scopeName": "source.miniscript",
"path": "./grammars/miniscript.grammar.json"
},
{
"language": "miniscript.policy",
"scopeName": "source.policy.miniscript",
"path": "./grammars/miniscript.policy.grammar.json"
}
],
"configuration": {
"type": "object",
"title": "Example configuration",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && yarn install && cd ../server && yarn install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"mocha": "^8.1.1",
"@types/node": "^12.12.0",
"eslint": "^6.4.0",
"@typescript-eslint/parser": "^2.3.0",
"typescript": "^3.9.4"
}
}