-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.1 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ata-validator",
"version": "0.12.1",
"description": "Ultra-fast JSON Schema validator. 5x faster validation, 159,000x faster compilation. Works without native addon. Cross-schema $ref, Draft 2020-12 + Draft 7, V8-optimized JS codegen, simdjson, RE2, multi-core. Standard Schema V1 compatible.",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"browser": {
"import": "./index.browser.mjs",
"require": "./index.js"
},
"import": "./index.mjs",
"require": "./index.js"
},
"./compat": {
"types": "./compat.d.ts",
"import": "./compat.mjs",
"require": "./compat.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"bin": {
"ata": "bin/ata.js"
},
"browser": {
"pkg-prebuilds": false
},
"scripts": {
"install": "node scripts/install.js",
"build": "cmake-js build --target ata",
"rebuild": "cmake-js rebuild --target ata",
"prebuild": "pkg-prebuilds-copy --baseDir build/Release --source ata.node --name=ata --strip --napi_version=10",
"prebuild-all": "npm run prebuild -- --arch x64 && npm run prebuild -- --arch arm64",
"test": "node test.js",
"test:suite": "node tests/run_suite.js",
"test:compat": "node tests/test_compat.js",
"test:standard-schema": "node tests/test_standard_schema.js",
"test:browser": "node tests/test_browser.js",
"test:ts": "node tests/test_ts_gen.js",
"test:ts-corpus": "node tests/test_ts_corpus.js",
"test:ts-differential": "node tests/test_ts_differential.js",
"bench": "node benchmark/bench_large.js",
"fuzz": "node tests/fuzz_differential.js",
"fuzz:long": "FUZZ_ITERATIONS=100000 node tests/fuzz_differential.js",
"test:json-suite": "node tests/run_json_test_suite.js"
},
"keywords": [
"json",
"json-schema",
"schema",
"validator",
"validation",
"fast",
"native",
"simdjson",
"napi",
"ajv",
"ajv-alternative",
"standard-schema",
"fastify"
],
"author": "Mert Can Altin <mertgold60@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mertcanaltin/ata-validator.git"
},
"bugs": {
"url": "https://github.com/mertcanaltin/ata-validator/issues"
},
"homepage": "https://ata-validator.com",
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"index.mjs",
"index.browser.mjs",
"index.d.ts",
"lib/",
"compat.js",
"compat.mjs",
"compat.d.ts",
"binding-options.js",
"binding/",
"include/",
"src/",
"deps/",
"prebuilds/",
"scripts/",
"CMakeLists.txt",
"README.md",
"LICENSE"
],
"dependencies": {
"node-addon-api": "^8.7.0",
"node-api-headers": "^1.8.0",
"pkg-prebuilds": "^1.0.0"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.49",
"cmake-js": "^8.0.0",
"mitata": "^1.0.34",
"typebox": "^1.1.7",
"typescript": "^6.0.3",
"valibot": "^1.3.1",
"zod": "^4.3.6"
},
"binary": {
"napi_versions": [
10
]
}
}