|
2 | 2 | "name": "r", |
3 | 3 | "displayName": "R", |
4 | 4 | "description": "R Extension for Visual Studio Code", |
5 | | - "version": "2.8.3", |
| 5 | + "version": "2.8.4", |
6 | 6 | "author": "REditorSupport", |
7 | 7 | "license": "SEE LICENSE IN LICENSE", |
8 | 8 | "publisher": "REditorSupport", |
|
26 | 26 | "R Markdown" |
27 | 27 | ], |
28 | 28 | "engines": { |
29 | | - "vscode": "^1.67.0" |
| 29 | + "vscode": "^1.75.0" |
30 | 30 | }, |
31 | 31 | "activationEvents": [ |
32 | | - "onLanguage:r", |
33 | | - "onLanguage:rd", |
34 | | - "onLanguage:rmd", |
35 | | - "onLanguage:debian-control.r", |
36 | | - "onLanguage:namespace.r", |
37 | | - "onLanguage:buildignore.r", |
38 | 32 | "workspaceContains:**/*.{rproj,Rproj,r,R,rd,Rd,rmd,Rmd}", |
39 | | - "onCommand:r.createRTerm", |
40 | | - "onCommand:r.runSource", |
41 | | - "onCommand:r.knitRmd", |
42 | | - "onCommand:r.knitRmdToPdf", |
43 | | - "onCommand:r.knitRmdToHtml", |
44 | | - "onCommand:r.knitRmdToAll", |
45 | | - "onCommand:r.runSourcewithEcho", |
46 | | - "onCommand:r.runSelection", |
47 | 33 | "onCommand:r.runSelectionInActiveTerm", |
48 | | - "onCommand:r.selectCurrentChunk", |
49 | | - "onCommand:r.runCurrentChunk", |
50 | | - "onCommand:r.runCurrentChunkAndMove", |
51 | | - "onCommand:r.runPreviousChunk", |
52 | | - "onCommand:r.runNextChunk", |
53 | | - "onCommand:r.runAboveChunks", |
54 | | - "onCommand:r.runCurrentAndBelowChunks", |
55 | | - "onCommand:r.runBelowChunks", |
56 | | - "onCommand:r.runAllChunks", |
57 | | - "onCommand:r.goToPreviousChunk", |
58 | | - "onCommand:r.goToNextChunk", |
59 | | - "onCommand:r.createGitignore", |
60 | | - "onCommand:r.createLintrConfig", |
61 | | - "onCommand:r.generateCCppProperties", |
62 | | - "onCommand:r.runCommandWithSelectionOrWord", |
63 | | - "onCommand:r.runCommandWithEditorPath", |
64 | | - "onCommand:r.runCommand", |
65 | | - "onCommand:r.showHelp", |
66 | | - "onCommand:r.helpPanel.back", |
67 | | - "onCommand:r.helpPanel.forward", |
68 | | - "onCommand:r.helpPanel.openForSelection", |
69 | | - "onCommand:r.plot.openUrl", |
70 | | - "onWebviewPanel:rhelp", |
71 | | - "onTerminalProfile:r.terminal-profile" |
| 34 | + "onWebviewPanel:rhelp" |
72 | 35 | ], |
73 | | - "main": "./out/extension", |
| 36 | + "main": "./dist/extension", |
74 | 37 | "contributes": { |
75 | 38 | "terminal": { |
76 | 39 | "profiles": [ |
|
1474 | 1437 | "default": [], |
1475 | 1438 | "markdownDescription": "Additional library paths to launch R background processes (R languageserver, help server, etc.). These paths will be appended to `.libPaths()` on process startup. It could be useful for projects with [renv](https://rstudio.github.io/renv/index.html) enabled." |
1476 | 1439 | }, |
1477 | | - "r.useRenvLibPath" : { |
| 1440 | + "r.useRenvLibPath": { |
1478 | 1441 | "type": "boolean", |
1479 | 1442 | "default": false, |
1480 | 1443 | "markdownDescription": "Use renv library paths to launch R background processes (R languageserver, help server, etc.)." |
|
2133 | 2096 | ] |
2134 | 2097 | }, |
2135 | 2098 | "scripts": { |
2136 | | - "vscode:prepublish": "tsc -p . && tsc -p ./html/help && tsc -p ./html/httpgd", |
2137 | | - "compile": "tsc -p . && tsc -p ./html/help && tsc -p ./html/httpgd", |
2138 | | - "watch": "tsc -p . --watch", |
| 2099 | + "vscode:prepublish": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode production", |
| 2100 | + "compile": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode none", |
| 2101 | + "watch": "webpack --mode none --watch", |
2139 | 2102 | "watchHelp": "tsc -p ./html/help --watch", |
2140 | 2103 | "watchHttpgd": "tsc -p ./html/httpgd --watch", |
2141 | 2104 | "pretest": "tsc -p ./", |
2142 | 2105 | "test": "node ./out/test/runTest.js", |
2143 | 2106 | "lint": "eslint src --ext ts" |
2144 | 2107 | }, |
2145 | | - "withWebpack": { |
2146 | | - "scripts": { |
2147 | | - "vscode:prepublish": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode production", |
2148 | | - "compile": "tsc -p ./html/help && tsc -p ./html/httpgd && webpack --mode none", |
2149 | | - "watch": "webpack --mode none --watch", |
2150 | | - "watchHelp": "tsc -p ./html/help --watch", |
2151 | | - "watchHttpgd": "tsc -p ./html/httpgd --watch", |
2152 | | - "pretest": "tsc -p ./", |
2153 | | - "test": "node ./out/test/runTest.js", |
2154 | | - "lint": "eslint src --ext ts" |
2155 | | - }, |
2156 | | - "main": "./dist/extension" |
2157 | | - }, |
2158 | 2108 | "devDependencies": { |
2159 | 2109 | "@types/cheerio": "^0.22.29", |
2160 | 2110 | "@types/ejs": "^3.0.6", |
|
2163 | 2113 | "@types/glob": "^8.0.0", |
2164 | 2114 | "@types/js-yaml": "^4.0.2", |
2165 | 2115 | "@types/mocha": "^8.2.2", |
2166 | | - "@types/node": "^16.11.7", |
| 2116 | + "@types/node": "^18.17.1", |
2167 | 2117 | "@types/node-fetch": "^2.5.10", |
2168 | 2118 | "@types/sinon": "^10.0.13", |
2169 | | - "@types/vscode": "^1.67.0", |
| 2119 | + "@types/vscode": "^1.75.0", |
2170 | 2120 | "@types/winreg": "^1.2.31", |
2171 | 2121 | "@typescript-eslint/eslint-plugin": "^5.30.0", |
2172 | 2122 | "@typescript-eslint/parser": "^5.30.0", |
2173 | 2123 | "@vscode/test-electron": "^2.2.3", |
| 2124 | + "@types/highlight.js": "^10.1.0", |
2174 | 2125 | "copy-webpack-plugin": "^9.0.0", |
2175 | 2126 | "devreplay": "^1.9.31", |
2176 | 2127 | "eslint": "^7.28.0", |
|
2183 | 2134 | "webpack-cli": "^4.7.2" |
2184 | 2135 | }, |
2185 | 2136 | "dependencies": { |
2186 | | - "ag-grid-community": "^30.2.0", |
2187 | | - "cheerio": "1.0.0-rc.10", |
| 2137 | + "ag-grid-community": "^31.3.2", |
| 2138 | + "cheerio": "1.0.0-rc.12", |
2188 | 2139 | "crypto": "^1.0.1", |
2189 | 2140 | "ejs": "^3.1.10", |
2190 | 2141 | "fs-extra": "^10.0.0", |
2191 | | - "highlight.js": "^10.7.3", |
| 2142 | + "highlight.js": "^11.9.0", |
2192 | 2143 | "httpgd": "^0.1.6", |
2193 | | - "jquery": "^3.6.0", |
| 2144 | + "jquery": "^3.7.1", |
2194 | 2145 | "jquery.json-viewer": "^1.5.0", |
2195 | 2146 | "js-yaml": "^4.1.0", |
2196 | 2147 | "node-fetch": "^2.6.7", |
|
0 commit comments