-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
54
55
{
"name": "@hyperjump/json-schema-errors",
"version": "0.1.0",
"description": "Get human friendly error messages from any of the standard JSON Schema output formats",
"keywords": [
"Hyperjump",
"JSON Schema",
"basic",
"detailed",
"errors",
"l18n",
"localization",
"output format",
"verbose"
],
"license": "MIT",
"contributors": [
"Jason Desrosiers <jdesrosi@gmail.com>",
"Arpit Kuriyal <arpitkuriyal2002@gmail.com>"
],
"repository": "github:hyperjump-io/json-schema-errors",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hyperjump-io"
},
"type": "module",
"main": "./src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"lint": "oxlint",
"test": "vitest run",
"type-check": "tsc --noEmit",
"docs": "typedoc --excludeExternals src/index.d.ts"
},
"dependencies": {
"@fluent/bundle": "^0.19.1",
"@hyperjump/json-pointer": "^1.1.1",
"@hyperjump/json-schema": "^1.17.2",
"@hyperjump/pact": "^1.4.0",
"@hyperjump/uri": "^1.3.2",
"json-stringify-deterministic": "^1.0.12"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "*",
"oxlint": "*",
"oxlint-tsgolint": "*",
"typedoc": "*",
"typescript": "*",
"vitest": "*"
}
}