-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
131 lines (131 loc) · 4.36 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
130
131
{
"name": "greyscript",
"displayName": "GreyScript",
"description": "Syntax highlighting (and more!) for GreyScript.",
"publisher": "WyattL",
"author": {
"name": "Wyatt",
"email": "urgent@wyatt.world",
"url": "https://github.com/WyattSL"
},
"icon": "icon.png",
"version": "3.0.8",
"repository": {
"type": "git",
"url": "https://github.com/WyattSL/greyscript.git"
},
"devDependencies": {
"esbuild": "^0.13.12",
"node-fetch": "^3.3.1",
"vsce": "^2.15.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"vscode:prepublish-unminified": "node ./build.mjs && npm run esbuild-base -- ",
"vscode:prepublish": "node ./build.mjs && npm run esbuild-base --",
"esbuild-base": "esbuild ./extension.js --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch"
},
"homepage": "https://github.com/WyattSL/greyscript/blob/main/CHANGELOG.md",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"browser": "./out/main.js",
"qna": "false",
"bugs": {
"url": "https://github.com/WyattSL/greyscript/issues",
"email": "wyattlipscomb20@gmail.com"
},
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "greyscript",
"aliases": [
"GreyScript",
"greyscript"
],
"extensions": [
".src",
".gs"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "greyscript",
"scopeName": "text.miniscript.greyscript",
"path": "./syntaxes/greyscript.tmLanguage.json"
}
],
"commands": [
{
"command": "greyScript.gotoError",
"title": "GreyScript: Goto Error"
},
{
"command": "greyscript.minify",
"title": "GreyScript: Minify"
}
],
"configuration": {
"title": "GreyScript",
"properties": {
"greyscript.autocomplete": {
"type": "boolean",
"default": true,
"description": "Enable GreyScript's built-in autocomplete.",
"order": 1
},
"greyscript.hoverdocs": {
"type": "boolean",
"default": true,
"description": "Enable GreyScript's hover-for-documentation.",
"order": 2
},
"greyscript.colorpicker": {
"type": "boolean",
"default": true,
"description": "Enable GreyScript's color picker.",
"order": 3
},
"greyscript.symbols": {
"type": "boolean",
"default": true,
"description": "Enable GreyScript's symbol outline.",
"order": 4
},
"greyscript.remoteSymbols": {
"type": "boolean",
"default": true,
"description": "Search imported files for symbols. (May be slow)",
"order": 5
},
"greyscript.remoteGrammar": {
"type": "boolean",
"default": true,
"description": "Attempt to update grammar definitions automagically from the Greydocs github repository.",
"order": 6
},
"greyscript.semanticsProvider": {
"type": "boolean",
"default": true,
"description": "Use the new semantic provider for syntax highlighting.",
"order": 7
}
}
},
"snippets": [
{
"language": "greyscript",
"path": "./snippets/main.json"
}
]
}
}