-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 2.56 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
{
"name": "overture-vscode",
"publisher": "devSparkle",
"displayName": "Overture for VSCode",
"description": "Types, snippets, and autocomplete support for Overture.",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE",
"version": "1.4.0",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Snippets",
"Programming Languages",
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./src/extension.js",
"contributes": {
"menus": {
"explorer/context": [
{
"when": "resourceLangId == lua",
"command": "overture-vscode.toggleLibrary",
"group": "Overture@1"
},
{
"when": "resourceLangId == lua && resourceFilename =~ /.*(server|client)\\.lua(u)?$/ && config.overture-vscode.addRunContextMenu",
"command": "overture-vscode.setServerContext",
"group": "Overture@2"
},
{
"when": "resourceLangId == lua && resourceFilename =~ /.*(server|client)\\.lua(u)?$/ && config.overture-vscode.addRunContextMenu",
"command": "overture-vscode.setClientContext",
"group": "Overture@3"
}
]
},
"commands": [
{
"command": "overture-vscode.toggleLibrary",
"title": "Toggle Overture oLibrary Tag"
},
{
"command": "overture-vscode.setServerContext",
"title": "Mark Script with Server RunContext"
},
{
"command": "overture-vscode.setClientContext",
"title": "Mark Script with Client RunContext"
}
],
"configuration": {
"title": "Overture for VSCode",
"properties": {
"overture-vscode.addRunContextMenu": {
"type": "boolean",
"default": true,
"description": "Should the \"Mark Script with ... RunContext\" explorer menu be shown on \".server.lua(u)\" and \".client.lua(u)\" files."
},
"overture-vscode.rojoUrl": {
"type": "string",
"default": "http://localhost:34872",
"description": "What is the URL of the Rojo server?"
}
}
},
"snippets": [
{
"language": "lua",
"path": "./src/snippets.json"
}
]
},
"extensionPack": [
"Nightrains.robloxlsp"
],
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "16.x",
"@types/vscode": "^1.82.0",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "https://github.com/devSparkle/overture-vscode.git"
},
"bugs": {
"url": "https://github.com/devSparkle/overture-vscode/issues"
},
"dependencies": {
"axios": "^1.7.2",
"dedent": "^1.5.3"
}
}