1 | {
|
2 | "name": "vscode-json-languageservice",
|
3 | "version": "5.4.3",
|
4 | "description": "Language service for JSON",
|
5 | "main": "./lib/umd/jsonLanguageService.js",
|
6 | "typings": "./lib/umd/jsonLanguageService",
|
7 | "module": "./lib/esm/jsonLanguageService.js",
|
8 | "author": "Microsoft Corporation",
|
9 | "repository": {
|
10 | "type": "git",
|
11 | "url": "https://github.com/Microsoft/vscode-json-languageservice"
|
12 | },
|
13 | "license": "MIT",
|
14 | "bugs": {
|
15 | "url": "https://github.com/Microsoft/vscode-json-languageservice"
|
16 | },
|
17 | "devDependencies": {
|
18 | "@types/mocha": "^10.0.10",
|
19 | "@types/node": "18.x",
|
20 | "@typescript-eslint/eslint-plugin": "^8.22.0",
|
21 | "@typescript-eslint/parser": "^8.22.0",
|
22 | "eslint": "^9.19.0",
|
23 | "json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git#69acf52990b004240839ae19b4bec8fb01d50876",
|
24 | "mocha": "^11.1.0",
|
25 | "rimraf": "^6.0.1",
|
26 | "typescript": "^5.7.3"
|
27 | },
|
28 | "dependencies": {
|
29 | "jsonc-parser": "^3.3.1",
|
30 | "vscode-languageserver-textdocument": "^1.0.12",
|
31 | "vscode-languageserver-types": "^3.17.5",
|
32 | "vscode-uri": "^3.0.8",
|
33 | "@vscode/l10n": "^0.0.18"
|
34 | },
|
35 | "scripts": {
|
36 | "prepack": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
|
37 | "compile": "tsc -p ./src",
|
38 | "compile-esm": "tsc -p ./src/tsconfig.esm.json",
|
39 | "clean": "rimraf lib",
|
40 | "remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
|
41 | "watch": "tsc -w -p ./src",
|
42 | "pretest": "npm run compile",
|
43 | "test": "mocha",
|
44 | "posttest": "npm run lint",
|
45 | "coverage": "npx nyc -r lcov npm run test",
|
46 | "lint": "eslint src/**/*.ts",
|
47 | "install-types-next": "npm install vscode-languageserver-types@next -f -S && npm install vscode-languageserver-textdocument@next -f -S",
|
48 | "sample": "npm run compile && node ./lib/umd/example/sample.js"
|
49 | }
|
50 | }
|