@depup/vscode-languageserver-types 3.18.3-depup.0
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/License.txt +11 -0
- package/README.md +25 -0
- package/changes.json +5 -0
- package/eslint.config.js +13 -0
- package/lib/esm/main.d.ts +3515 -0
- package/lib/esm/main.js +2415 -0
- package/lib/esm/package.json +3 -0
- package/lib/umd/main.d.ts +3515 -0
- package/lib/umd/main.js +2465 -0
- package/package.json +53 -0
- package/thirdpartynotices.txt +16 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@depup/vscode-languageserver-types",
|
|
3
|
+
"description": "Types used by the Language server for node (with updated dependencies)",
|
|
4
|
+
"version": "3.18.3-depup.0",
|
|
5
|
+
"author": "Microsoft Corporation",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/Microsoft/vscode-languageserver-node.git",
|
|
10
|
+
"directory": "types"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
|
|
14
|
+
},
|
|
15
|
+
"main": "./lib/umd/main.js",
|
|
16
|
+
"typings": "./lib/umd/main",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"browser": "./lib/esm/main.js",
|
|
20
|
+
"module": "./lib/esm/main.js",
|
|
21
|
+
"import": "./lib/esm/main.js",
|
|
22
|
+
"default": "./lib/umd/main.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"compile": "tsc -b ./tsconfig.json",
|
|
27
|
+
"clean": "rimraf lib",
|
|
28
|
+
"watch": "tsc -b ./tsconfig.watch.json -w",
|
|
29
|
+
"lint": "eslint src",
|
|
30
|
+
"test": "mocha",
|
|
31
|
+
"all": "npm run clean && npm run compile && npm run lint && npm run test",
|
|
32
|
+
"compile:esm": "tsc -b ./tsconfig.esm.publish.json && node ../build/bin/fix-esm",
|
|
33
|
+
"compile:umd": "tsc -b ./tsconfig.umd.publish.json",
|
|
34
|
+
"all:publish": "git clean -xfd . && npm install && npm run compile:esm && npm run compile:umd && npm run lint && npm run test",
|
|
35
|
+
"preversion": "npm test"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"vscode-languageserver-types",
|
|
39
|
+
"depup",
|
|
40
|
+
"updated-dependencies",
|
|
41
|
+
"security",
|
|
42
|
+
"latest",
|
|
43
|
+
"patched"
|
|
44
|
+
],
|
|
45
|
+
"depup": {
|
|
46
|
+
"changes": {},
|
|
47
|
+
"depsUpdated": 0,
|
|
48
|
+
"originalPackage": "vscode-languageserver-types",
|
|
49
|
+
"originalVersion": "3.18.3",
|
|
50
|
+
"processedAt": "2026-08-30T00:59:54.840Z",
|
|
51
|
+
"smokeTest": "passed"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
NOTICES AND INFORMATION
|
|
2
|
+
Do Not Translate or Localize
|
|
3
|
+
|
|
4
|
+
This software incorporates material from third parties.
|
|
5
|
+
Microsoft makes certain open source code available at https://3rdpartysource.microsoft.com,
|
|
6
|
+
or you may send a check or money order for US $5.00, including the product name,
|
|
7
|
+
the open source component name, platform, and version number, to:
|
|
8
|
+
|
|
9
|
+
Source Code Compliance Team
|
|
10
|
+
Microsoft Corporation
|
|
11
|
+
One Microsoft Way
|
|
12
|
+
Redmond, WA 98052
|
|
13
|
+
USA
|
|
14
|
+
|
|
15
|
+
Notwithstanding any other terms, you may reverse engineer this software to the extent
|
|
16
|
+
required to debug changes to any libraries licensed under the GNU Lesser General Public License.
|