forked from noir-lang/vscode-noir
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.09 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
{
"name": "vscode-noir",
"displayName": "Noir Language Support",
"description": "Noir support for Visual Studio Code",
"version": "0.0.4",
"publisher": "noir-lang",
"keywords": [
"noir",
"noir-lang"
],
"icon": "noir.png",
"engines": {
"vscode": "^1.67.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/noir-lang/vscode-noir"
},
"bugs": {
"url": "https://github.com/noir-lang/vscode-noir/issues"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:noir"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "noir.restart",
"title": "Noir: Restart Language Server"
}
],
"snippets": [
{
"language": "noir",
"path": "./snippets/snippets.json"
}
],
"languages": [
{
"id": "noir",
"aliases": [
"Noir",
"noir"
],
"extensions": [
".nr"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "noir",
"scopeName": "source.nr",
"path": "./syntaxes/noir.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Noir Language Server configuration",
"properties": {
"noir.nargoFlags": {
"scope": "resource",
"type": "string",
"description": "Space-separated list of flags to pass to the nargo CLI"
},
"noir.nargoPath": {
"scope": "resource",
"type": "string",
"description": "Absolute path to the nargo CLI (detected in PATH if not specified)"
},
"noir.enableLSP": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Enable the language server"
},
"noir.trace.server": {
"scope": "resource",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"package": "vsce package",
"test-compile": "tsc -p ./",
"format": "prettier --write .",
"check-format": "prettier --check .",
"deploy": "vsce publish"
},
"dependencies": {
"vscode-languageclient": "^8.0.3",
"which": "^3.0.1"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "1.67.0",
"@types/which": "^3.0.0",
"@typescript-eslint/parser": "^5.59.9",
"esbuild": "^0.17.19",
"eslint": "^8.42.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"vsce": "^2.15.0"
}
}