-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.24 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.24 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
{
"name": "ggsql",
"displayName": "ggsql",
"description": "Syntax highlighting and language runtime for ggsql - SQL with declarative visualization",
"version": "0.1.9",
"publisher": "ggsql",
"engines": {
"vscode": "^1.75.0"
},
"main": "./out/extension.js",
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Programming Languages"
],
"keywords": [
"ggsql",
"sql",
"visualization",
"grammar-of-graphics",
"data-viz"
],
"repository": {
"type": "git",
"url": "https://github.com/posit-dev/ggsql"
},
"license": "MIT",
"icon": "logo.png",
"contributes": {
"languages": [
{
"id": "ggsql",
"extensions": [
".ggsql",
".ggsql.sql",
".gsql"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icon.png",
"dark": "./icon.png"
}
}
],
"grammars": [
{
"language": "ggsql",
"scopeName": "source.ggsql",
"path": "./syntaxes/ggsql.tmLanguage.json"
}
],
"languageRuntimes": [
{
"languageId": "ggsql"
}
],
"configuration": {
"type": "object",
"title": "ggsql",
"properties": {
"ggsql.kernelPath": {
"type": "string",
"default": "",
"description": "Path to the ggsql-jupyter executable. If empty, uses 'ggsql-jupyter' from PATH."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@posit-dev/positron": "^0.2.2",
"@types/node": "^18.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.0.0"
},
"overrides": {
"uri-js": "npm:uri-js-replace"
}
}