-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
157 lines (157 loc) · 5.38 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "aqua",
"displayName": "Aqua",
"description": "Aqua language support powered by the Aqua Language Server",
"author": "Fluence Labs",
"version": "1.1.0",
"publisher": "FluenceLabs",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/fluencelabs/aqua"
},
"categories": [
"Programming Languages"
],
"keywords": [
"aqua vscode extension"
],
"engines": {
"vscode": "1.94.0"
},
"activationEvents": [
"onLanguage:aqua"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "aqua",
"aliases": [
"aqua"
],
"extensions": [
".aqua"
],
"configuration": "./language-configurations/aqua.json"
},
{
"id": "air",
"aliases": [
"AIR"
],
"extensions": [
".air"
],
"configuration": "./language-configurations/air.json"
}
],
"grammars": [
{
"language": "aqua",
"scopeName": "source.aqua",
"path": "./syntaxes/aqua.tmLanguage.json"
},
{
"language": "air",
"scopeName": "source.air",
"path": "./syntaxes/air.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Aqua",
"properties": {
"aquaSettings.imports": {
"definitions": {
"legacyImports": {
"description": "Legacy format of imports - just an array of paths",
"type": "array",
"items": {
"type": "string"
}
},
"structuredImports": {
"description": "Structured format of imports - dict of settings for path prefixes",
"type": "object",
"additionalProperties": {
"description": "Settings for path prefix - dict of locations for import prefixes",
"type": "object",
"additionalProperties": {
"description": "Location for import prefix",
"type": [
"string",
"array"
],
"items": {
"type": "string"
}
}
}
}
},
"scope": "resource",
"type": [
"object",
"array"
],
"if": {
"type": "object"
},
"then": {
"$ref": "#/definitions/structuredImports"
},
"else": {
"$ref": "#/definitions/legacyImports"
},
"default": {},
"description": "Adds imports for aqua file or project"
},
"aquaSettings.fluencePath": {
"scope": "resource",
"type": [
"string",
"null"
],
"default": null,
"description": "Path to fluence CLI executable"
},
"aquaSettings.fluenceCallDelay": {
"scope": "resource",
"type": "number",
"default": 5000,
"description": "Minimal delay (ms) between calls to fluence CLI (for one file)"
}
}
}
},
"scripts": {
"before-tests": "bash integration-tests/before-tests.sh",
"test": "npm run compile && vscode-test",
"test:unit": "npm run test -C server",
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@tsconfig/node16-strictest": "1.0.4",
"@types/mocha": "9.1.1",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@vscode/test-cli": "0.0.9",
"@vscode/test-electron": "2.4.1",
"@types/vscode": "1.94.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"mocha": "9.2.2",
"prettier": "2.6.2",
"typescript": "4.9.5"
}
}