-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.87 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.87 KB
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
{
"name": "vscode-json-languageservice",
"version": "6.0.0-next.1",
"description": "Language service for JSON",
"type": "module",
"types": "./lib/esm/jsonLanguageService.d.ts",
"exports": {
".": {
"types": "./lib/esm/jsonLanguageService.d.ts",
"import": "./lib/esm/jsonLanguageService.js"
}
},
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-json-languageservice"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-json-languageservice"
},
"devDependencies": {
"@types/node": "22.x",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.4",
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git#69acf52990b004240839ae19b4bec8fb01d50876",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
},
"dependencies": {
"jsonc-parser": "4.0.0-next.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-languageserver-types": "^3.17.5",
"vscode-uri": "^3.1.0",
"@vscode/l10n": "^0.0.18"
},
"scripts": {
"prepack": "npm run clean && npm run compile && npm run test && npm run remove-sourcemap-refs",
"compile": "tsc -p ./src",
"clean": "rimraf lib",
"bundle-schemas": "node ./build/bundle-schemas.js",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"watch": "tsc -w -p ./src",
"pretest": "npm run compile",
"test": "node --test ./lib/esm/test/*.test.js",
"posttest": "npm run lint",
"coverage": "npx nyc -r lcov npm run test",
"lint": "eslint src/**/*.ts",
"install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
"sample": "npm run compile && node ./lib/esm/example/sample.js"
}
}