-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.61 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@sourcemeta/blaze",
"version": "0.0.0",
"description": "A pure JavaScript port of the evaluator from Blaze, a high-performance C++ JSON Schema validator. Zero dependencies. Supports Draft 4, Draft 6, Draft 7, 2019-09, and 2020-12 with schema-specific code generation for near-native speed",
"type": "module",
"main": "./index.mjs",
"module": "./index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"default": "./index.mjs"
}
},
"types": "./index.d.mts",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/sourcemeta/blaze",
"author": {
"email": "hello@sourcemeta.com",
"name": "Sourcemeta",
"url": "https://www.sourcemeta.com"
},
"engines": {
"node": ">=18"
},
"funding": "https://github.com/sponsors/sourcemeta",
"keywords": [
"jsonschema",
"json",
"schema",
"json-schema",
"validator",
"validation",
"json-schema-validator",
"json-schema-validation",
"blaze",
"sourcemeta",
"fast",
"performance",
"codegen",
"draft-04",
"draft-06",
"draft-07",
"draft4",
"draft6",
"draft7",
"2019-09",
"2020-12",
"ajv",
"ajv-alternative",
"$ref",
"validate",
"evaluator"
],
"bugs": {
"url": "https://github.com/sourcemeta/blaze/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcemeta/jsonschema.git",
"directory": "vendor/blaze/ports/javascript"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"files": [
"index.mjs",
"index.d.mts",
"README.md",
"LICENSE"
]
}