-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "roan-language",
"displayName": "Roan Language",
"description": "Roan Language for VSCode",
"version": "0.0.1",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:roan",
"onCommand:extension.roanStart"
],
"contributes": {
"languages": [
{
"id": "roan",
"extensions": [
".roan"
],
"aliases": [
"Roan"
]
}
],
"configuration": {
"roan-language-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run lint && pnpm build",
"build": "cd server && cargo build --release && cd .. && tsup",
"watch": "npm-run-all -p watch:*",
"package": "pnpm run lint && pnpm build --production",
"lint": "eslint client"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^9.11.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4",
"dependencies": {
"tsup": "^8.3.5",
"vscode-languageclient": "^9.0.1"
}
}