@redocly/openapi-language-server 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -1
- package/lib/index.js +55 -55
- package/package.json +18 -23
package/package.json
CHANGED
|
@@ -1,42 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/openapi-language-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Redocly OpenAPI language server",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"typings": "lib/index.d.ts",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"build": "npm run clean && node esbuild.cjs",
|
|
10
|
-
"compile": "npm run clean && tsc -p tsconfig.json",
|
|
11
|
-
"deploy": "npm publish",
|
|
12
|
-
"clean": "rm -rf lib",
|
|
13
|
-
"prettier-base": "prettier \"**/*.{json,js,jsx,ts,tsx,yml,yaml,html,md}\"",
|
|
14
|
-
"prettier": "npm run prettier-base -- --write",
|
|
15
|
-
"prettier:check": "npm run prettier-base -- --check",
|
|
16
|
-
"ts:check": "tsc --noEmit --skipLibCheck",
|
|
17
|
-
"lint": "eslint . --ext .jsx,.ts,.tsx --cache",
|
|
18
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
19
|
-
},
|
|
20
8
|
"author": "Redocly LLC <team@redocly.com>",
|
|
21
9
|
"license": "SEE LICENSE IN LICENSE",
|
|
22
10
|
"peerDependencies": {
|
|
23
|
-
"@redocly/openapi-core": "1.
|
|
11
|
+
"@redocly/openapi-core": "1.25.3"
|
|
24
12
|
},
|
|
25
13
|
"devDependencies": {
|
|
26
|
-
"@types/node": "
|
|
27
|
-
"@typescript-eslint/eslint-plugin": "
|
|
28
|
-
"@typescript-eslint/parser": "
|
|
14
|
+
"@types/node": "20.14.2",
|
|
15
|
+
"@typescript-eslint/eslint-plugin": "8.6.0",
|
|
16
|
+
"@typescript-eslint/parser": "8.6.0",
|
|
29
17
|
"esbuild": "^0.15.0",
|
|
30
|
-
"eslint": "
|
|
31
|
-
"npm-dts": "
|
|
32
|
-
"path-browserify": "
|
|
33
|
-
"prettier": "2.
|
|
34
|
-
"typescript": "
|
|
18
|
+
"eslint": "8.57.0",
|
|
19
|
+
"npm-dts": "1.3.12",
|
|
20
|
+
"path-browserify": "1.0.1",
|
|
21
|
+
"prettier": "2.8.8",
|
|
22
|
+
"typescript": "5.2.2"
|
|
35
23
|
},
|
|
36
24
|
"dependencies": {
|
|
37
25
|
"@redocly/yaml-language-server-parser": "^0.3.0",
|
|
38
26
|
"vscode-languageserver": "^8.0.2",
|
|
39
27
|
"vscode-languageserver-textdocument": "^1.0.5",
|
|
40
28
|
"vscode-uri": "^3.0.2"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "npm run clean && node esbuild.cjs",
|
|
32
|
+
"compile": "npm run clean && tsc -p tsconfig.json",
|
|
33
|
+
"clean": "rm -rf lib",
|
|
34
|
+
"ts:check": "tsc --noEmit --skipLibCheck",
|
|
35
|
+
"lint": "eslint . --ext .jsx,.ts,.tsx --cache"
|
|
41
36
|
}
|
|
42
|
-
}
|
|
37
|
+
}
|