@sourcemeta/blaze 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. package/LICENSE +165 -0
  2. package/README.md +65 -0
  3. package/index.d.mts +15 -0
  4. package/index.mjs +3709 -0
  5. package/package.json +71 -0
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@sourcemeta/blaze",
3
+ "version": "0.0.1",
4
+ "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",
5
+ "type": "module",
6
+ "main": "./index.mjs",
7
+ "module": "./index.mjs",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./index.mjs",
11
+ "default": "./index.mjs"
12
+ }
13
+ },
14
+ "types": "./index.d.mts",
15
+ "license": "LGPL-3.0-or-later",
16
+ "homepage": "https://github.com/sourcemeta/blaze",
17
+ "author": {
18
+ "email": "hello@sourcemeta.com",
19
+ "name": "Sourcemeta",
20
+ "url": "https://www.sourcemeta.com"
21
+ },
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "funding": "https://github.com/sponsors/sourcemeta",
26
+ "keywords": [
27
+ "jsonschema",
28
+ "json",
29
+ "schema",
30
+ "json-schema",
31
+ "validator",
32
+ "validation",
33
+ "json-schema-validator",
34
+ "json-schema-validation",
35
+ "blaze",
36
+ "sourcemeta",
37
+ "fast",
38
+ "performance",
39
+ "codegen",
40
+ "draft-04",
41
+ "draft-06",
42
+ "draft-07",
43
+ "draft4",
44
+ "draft6",
45
+ "draft7",
46
+ "2019-09",
47
+ "2020-12",
48
+ "ajv",
49
+ "ajv-alternative",
50
+ "$ref",
51
+ "validate",
52
+ "evaluator"
53
+ ],
54
+ "bugs": {
55
+ "url": "https://github.com/sourcemeta/blaze/issues"
56
+ },
57
+ "repository": {
58
+ "type": "git",
59
+ "url": "git+https://github.com/sourcemeta/blaze.git",
60
+ "directory": "ports/javascript"
61
+ },
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "files": [
66
+ "index.mjs",
67
+ "index.d.mts",
68
+ "README.md",
69
+ "LICENSE"
70
+ ]
71
+ }