forked from hyperjump-io/json-schema-language-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 KB
/
package.json
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
{
"name": "@hyperjump/json-schema-language-tools",
"version": "0.1.0",
"description": "JSON Schema Language Tools",
"type": "module",
"scripts": {
"postinstall": "cd vscode && npm install && cd ../language-server && npm install && cd .."
},
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"repository": "github:hyperjump-io/json-schema-language-tools",
"keywords": [],
"devDependencies": {
"@types/node": "*",
"@types/picomatch": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"@vitest/coverage-v8": "*",
"eslint": "*",
"eslint-import-resolver-exports": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"json-schema-test-suite": "github:json-schema-org/JSON-Schema-Test-Suite",
"vitest": "*"
},
"dependencies": {
"@hyperjump/browser": "^1.1.0",
"@hyperjump/json-pointer": "^1.0.1",
"@hyperjump/json-schema": "github:hyperjump-io/json-schema#lsp",
"@hyperjump/pact": "^1.3.0",
"@hyperjump/uri": "^1.2.2",
"picomatch": "^4.0.2"
}
}