-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
129 lines (129 loc) · 3.13 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": "loretta-lua",
"displayName": "Lua Language Server",
"description": "A Lua/GLua/Luau language server",
"author": "Loretta Developers",
"license": "MIT",
"version": "0.0.7",
"homepage": "https://github.com/LorettaDevs/loretta-vscode",
"repository": {
"type": "git",
"url": "https://github.com/LorettaDevs/loretta-vscode"
},
"publisher": "lorettadevs",
"categories": [
"Programming Languages",
"Formatters",
"Linters"
],
"keywords": [
"Lua",
"GLua",
"Luau",
"Roblox Lua",
"Intellisense"
],
"engines": {
"vscode": "^1.61.0"
},
"activationEvents": [
"onLanguage:lua"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "lua",
"aliases": [
"Lua",
"lua"
],
"extensions": [
".lua"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "lua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.tmLanguage.json"
}
],
"semanticTokenScopes": [
{
"language": "lua",
"scopes": {
"function": [
"variable.function.lua"
],
"function.declaration": [
"entity.name.function.lua"
],
"function.defaultLibrary": [
"support.function.lua"
],
"function.static": [
"entity.name.function.lua"
],
"method": [
"entity.name.function.lua"
],
"method.declaration": [
"entity.name.function.lua"
],
"parameter.declaration": [
"variable.parameter.lua"
],
"property": [
"entity.other.attribute.lua"
],
"property.declaration": [
"entity.other.property.lua"
],
"variable": [
"variable.other.lua"
],
"variable.abstract": [
"variable.other.constant.lua"
],
"variable.declaration": [
"variable.other.lua"
],
"variable.defaultLibrary": [
"support.constant.lua"
],
"variable.local": [
"variable.other.lua"
],
"variable.readonly": [
"variable.other.constant.lua"
],
"variable.static": [
"variable.other.lua"
]
}
}
]
},
"scripts": {
"compile": "pwsh ./publish-server.ps1 && webpack --mode production",
"debug-compile": "pwsh ./publish-server.ps1 -Debug && webpack --mode development",
"watch": "webpack --mode development --watch",
"lint": "eslint ./client/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.64.3",
"webpack-cli": "^4.9.1"
}
}