-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
156 lines (156 loc) · 4.28 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "uiua-vscode",
"displayName": "Uiua",
"description": "Uiua language support",
"repository": {
"type": "git",
"url": "https://github.com/uiua-lang/uiua-vscode"
},
"version": "0.0.61",
"license": "MIT",
"publisher": "uiua-lang",
"readme": "README.md",
"engines": {
"vscode": ">=1.0.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"main": "./out/extension.js",
"icon": "uiua-logo.png",
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "uiua",
"aliases": [
"Uiua",
"uiua"
],
"extensions": [
".ua"
],
"configuration": "./language-configuration.json"
}
],
"configurationDefaults": {
"[uiua]": {
"editor.semanticHighlighting.enabled": true,
"editor.inlayHints.enabled": "on",
"editor.fontFamily": "Uiua386Color, Uiua386, DejaVu Sans Mono, monospace",
"editor.suggestFontSize": 16,
"editor.unicodeHighlight.ambiguousCharacters": false
},
"editor.semanticTokenColorCustomizations": {
"rules": {
"uiua_number": "#ea5",
"noadic_function": "#ed5e6a",
"monadic_function": "#95d16a",
"dyadic_function": "#54b0fc",
"triadic_function": "#8078f1",
"tetradic_function": "#f576d8",
"monadic_modifier": "#f0c36f",
"dyadic_modifier": "#cc6be9",
"triadic_modifier": "#F5A9B8",
"uiua_module": "#d7be8c"
},
"[The Best Theme]": {
"rules": {
"uiua_string": "#20f9fc"
}
}
}
},
"configuration": {
"type": "object",
"title": "Uiua",
"properties": {
"uiua.executablePath": {
"type": "string",
"default": "",
"description": "Path to the Uiua executable used by the Uiua extension. When empty, the extension will try to find the Uiua executable in your PATH environment variable.",
"editPresentation": "singlelineText"
},
"uiua.inlayHints.bindingSignatureHints": {
"type": "boolean",
"default": true,
"description": "Show signature hints for bindings."
},
"uiua.inlayHints.inlineSignatureHints": {
"type": "boolean",
"default": true,
"description": "Show signature hints for inline functions."
},
"uiua.inlayHints.inlineHintMinLength": {
"type": "number",
"default": 4,
"description": "The minimum length of a function to show signature hints."
},
"uiua.inlayHints.values": {
"type": "boolean",
"default": true,
"description": "Show value hints on top-level expressions."
},
"uiua.format.onTypeFormatting": {
"type": "boolean",
"default": true,
"description": "Enable on-type formatting."
},
"uiua.semanticHighlighting.customTokenTypes": {
"type": "boolean",
"default": true,
"description": "Enable Uiua-specific token types for semantic highlighting which override default theme colors."
}
}
},
"grammars": [
{
"language": "uiua",
"scopeName": "source.uiua",
"path": "./syntaxes/uiua.tmLanguage.json"
}
],
"snippets": [
{
"language": "uiua",
"path": "./snippets/uiua.json"
}
],
"commands": [
{
"title": "Run Uiua",
"command": "uiua.run"
}
],
"keybindings": [
{
"command": "uiua.run",
"key": "F5",
"when": "editorLangId == uiua"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"dependencies": {
"vscode-languageclient": "9.0.1"
},
"devDependencies": {
"@types/vscode": ">=1.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "20.2.5",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.16.0",
"glob": "^11.0.0",
"mocha": "^11.0.1",
"typescript": "^5.7.2",
"@vscode/test-electron": "^2.4.1"
}
}