-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
84 lines (84 loc) · 1.84 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
{
"name": "nrs-language-server",
"description": "nano rust language server",
"license": "MIT",
"version": "1.5.0",
"categories": [],
"keywords": [
"language-server",
"tower-lsp"
],
"repository": {
"url": "https://github.com/IWANABETHATGUY/tower-lsp-boilerplate"
},
"engines": {
"vscode": "^1.66.0"
},
"enabledApiProposals": [],
"activationEvents": [
"onLanguage:nrs"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "nrs",
"extensions": [
".nrs"
]
}
],
"configuration": {
"type": "object",
"title": "nrs-language-server",
"properties": {
"nrs-language-server.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"postinstall": "cd client && pnpm i",
"compile": "npm run check-types && node esbuild.js --production",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "vsce package --no-dependencies"
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@vscode/vsce": "^3.2.1",
"cross-env": "^7.0.2",
"esbuild": "^0.24.2",
"eslint": "9.17.0",
"glob": "11.0.0",
"mocha": "11.0.2",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.5.1",
"typescript": "5.4.5",
"vscode-test": "^1.4.0",
"vscode-uri": "^3.0.2"
},
"dependencies": {
},
"packageManager": "[email protected]"
}