๐Ÿ“ฆ phil294 / SQLite-Runner-LSP

๐Ÿ“„ package.json ยท 31 lines
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{
	"name": "sqlite-runner-lsp",
	"displayName": "SQLite Runner LSP",
	"description": "Runs SQL files against SQLite and shows errors in real-time",
	"icon": "icon.png",
	"repository": {
		"type": "git",
		"url": "https://github.com/phil294/SQLite-Runner-LSP"
	},
	"version": "0.0.2",
	"publisher": "phil294",
	"engines": {
		"vscode": "^1.75.0"
	},
	"categories": [
		"Programming Languages"
	],
	"activationEvents": [
		"onLanguage:sql"
	],
	"main": "./client/extension.js",
	"scripts": {
		"postinstall": "cd client && npm install && cd ../server && npm install"
	},
	"devDependencies": {
		"npm-check-updates": "^19.1.2",
		"ovsx": "^0.10.6",
		"vsce": "^2.15.0"
	}
}