-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.05 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.05 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
{
"name": "l-language-server",
"version": "1.5.0",
"description": "L language server",
"categories": [],
"keywords": [
"language-server",
"tower-lsp"
],
"license": "MIT",
"repository": {
"url": "https://github.com/IWANABETHATGUY/tower-lsp-boilerplate"
},
"main": "./dist/extension.js",
"scripts": {
"postinstall": "cd client && pnpm i",
"compile": "npm run check-types && cross-env NODE_ENV=production rolldown -c",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:rolldown": "rolldown --watch -c",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "vsce package --no-dependencies",
"lint": "oxlint -c oxlint.json .",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check ."
},
"devDependencies": {
"@types/glob": "8.1.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@vscode/vsce": "^3.2.1",
"cross-env": "^7.0.2",
"glob": "11.0.0",
"mocha": "11.0.2",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"rolldown": "^1.0.0-rc.6",
"ts-loader": "^9.5.1",
"typescript": "5.4.5",
"vscode-test": "^1.4.0",
"vscode-uri": "^3.0.2"
},
"contributes": {
"languages": [
{
"id": "l",
"extensions": [
".l"
]
}
],
"configuration": {
"type": "object",
"title": "l-language-server",
"properties": {
"l-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."
}
}
}
},
"activationEvents": [
"onLanguage:l"
],
"engines": {
"vscode": "^1.66.0"
},
"packageManager": "pnpm@8.15.7",
"enabledApiProposals": []
}