-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 3.57 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 3.57 KB
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
{
"name": "overture-vscode",
"version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/devSparkle/overture-vscode.git"
},
"main": "./src/extension.js",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.2",
"@types/vscode": "^1.110.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^10.2.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"activationEvents": [
"onStartupFinished"
],
"badges": [
{
"url": "https://github.com/devSparkle/overture-vscode/actions/workflows/ci.yml/badge.svg",
"href": "https://github.com/devSparkle/overture-vscode/actions/workflows/ci.yml",
"description": "Continuous Integration"
}
],
"bugs": {
"url": "https://github.com/devSparkle/overture-vscode/issues"
},
"categories": [
"Snippets",
"Programming Languages",
"Other"
],
"contributes": {
"menus": {
"explorer/context": [
{
"when": "resourceLangId == lua",
"command": "overture-vscode.toggleLibrary",
"group": "Overture@1"
},
{
"when": "resourceLangId == luau",
"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 == luau && 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"
},
{
"when": "resourceLangId == luau && 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"
},
{
"language": "luau",
"path": "./src/snippets.json"
}
]
},
"description": "Types, snippets, and autocomplete support for Overture.",
"displayName": "Overture for VSCode",
"engines": {
"vscode": "^1.110.0"
},
"extensionPack": [
"JohnnyMorganz.luau-lsp"
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"icon": "assets/icon.png",
"license": "MIT",
"publisher": "devSparkle",
"scripts": {
"lint": "eslint --fix"
},
"type": "module",
"dependencies": {
"axios": "^1.14.0",
"dedent": "^1.7.2"
}
}