|
1 | 1 | {
|
2 |
| - "name": "chialisp-dev", |
3 |
| - "displayName": "Chialisp Dev", |
| 2 | + "name": "chialisp", |
| 3 | + "displayName": "Chialisp", |
4 | 4 | "icon": "images/chialisp.png",
|
5 |
| - "description": "A Rust LSP and client for Chialisp", |
| 5 | + "description": "A Rust LSP client for Chialisp", |
6 | 6 | "publisher": "ChiaNetwork",
|
7 |
| - "version": "1.0.1", |
| 7 | + "version": "1.0.0", |
8 | 8 | "engines": {
|
9 |
| - "vscode": "^1.70.0" |
| 9 | + "vscode": "^1.85.0" |
10 | 10 | },
|
11 | 11 | "categories": [
|
12 | 12 | "Programming Languages"
|
13 | 13 | ],
|
14 | 14 | "repository": "https://github.com/Chia-Network/vscode-chialisp-lsp",
|
15 | 15 | "activationEvents": [
|
16 | 16 | "onLanguage:chialisp",
|
17 |
| - "onCommand:chialisp-dev.startDebug", |
| 17 | + "onCommand:chialisp.startDebug", |
18 | 18 | "onDebug"
|
19 | 19 | ],
|
20 | 20 | "contributes": {
|
|
54 | 54 | ],
|
55 | 55 | "commands": [
|
56 | 56 | {
|
57 |
| - "command": "chialisp-dev.locateIncludePath", |
| 57 | + "command": "chialisp.locateIncludePath", |
58 | 58 | "title": "Locate include file",
|
59 | 59 | "category": "Chialisp"
|
60 | 60 | },
|
61 | 61 | {
|
62 |
| - "command": "chialisp-dev.startDebug", |
| 62 | + "command": "chialisp.startDebug", |
63 | 63 | "title": "Start Chialisp Debug"
|
64 | 64 | }
|
65 | 65 | ],
|
66 | 66 | "menus": {
|
67 | 67 | "explorer/context": [
|
68 | 68 | {
|
69 | 69 | "when": "resourceFilename =~ /\\.clsp$/ || resourceFilename =~ /\\.clvm$/",
|
70 |
| - "command": "chialisp-dev.startDebug" |
| 70 | + "command": "chialisp.startDebug" |
71 | 71 | }
|
72 | 72 | ]
|
73 | 73 | },
|
74 |
| - "breakpoints":[ |
75 |
| - {"language":"Chialisp"}, |
76 |
| - {"language":"chialisp"} |
| 74 | + "breakpoints": [ |
| 75 | + { |
| 76 | + "language": "Chialisp" |
| 77 | + }, |
| 78 | + { |
| 79 | + "language": "chialisp" |
| 80 | + } |
77 | 81 | ],
|
78 |
| - "debuggers":[ |
| 82 | + "debuggers": [ |
79 | 83 | {
|
80 |
| - "type":"chialisp-dev", |
81 |
| - "label":"chialisp debugger", |
82 |
| - "languages":["Chialisp", "chialisp"], |
83 |
| - "configurationAttributes":{ |
84 |
| - "launch":{ |
| 84 | + "type": "chialisp", |
| 85 | + "label": "chialisp debugger", |
| 86 | + "languages": [ |
| 87 | + "Chialisp", |
| 88 | + "chialisp" |
| 89 | + ], |
| 90 | + "configurationAttributes": { |
| 91 | + "launch": { |
85 | 92 | "required": [
|
86 | 93 | "program"
|
87 | 94 | ]
|
|
112 | 119 | "test": "node ./out/test/runTest.js"
|
113 | 120 | },
|
114 | 121 | "dependencies": {
|
115 |
| - "vscode-languageclient": "^7.0.0" |
| 122 | + "vscode-languageclient": "^8.1.0" |
116 | 123 | },
|
117 | 124 | "devDependencies": {
|
118 |
| - "@types/glob": "^7.2.0", |
| 125 | + "@types/glob": "^8.1.0", |
119 | 126 | "@types/mocha": "^9.1.1",
|
120 |
| - "@types/node": "16.x", |
121 |
| - "@types/vscode": "^1.70.0", |
122 |
| - "@typescript-eslint/eslint-plugin": "^5.31.0", |
123 |
| - "@typescript-eslint/parser": "^5.31.0", |
| 127 | + "@types/node": "20.1.3", |
| 128 | + "@types/vscode": "^1.85.0", |
| 129 | + "@typescript-eslint/eslint-plugin": "^5.59.5", |
| 130 | + "@typescript-eslint/parser": "^5.59.5", |
124 | 131 | "@vscode/test-electron": "^2.1.5",
|
125 |
| - "eslint": "^8.20.0", |
126 |
| - "glob": "^8.0.3", |
| 132 | + "@vscode/vsce": "2.23.0", |
| 133 | + "eslint": "^8.40.0", |
| 134 | + "glob": "^10.2.3", |
127 | 135 | "mocha": "^10.0.0",
|
128 |
| - "typescript": "^4.7.4", |
129 |
| - "vsce": "^2.11.0" |
| 136 | + "typescript": "^5.0.4" |
130 | 137 | }
|
131 | 138 | }
|
0 commit comments