-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.98 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.98 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
{
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"bugs": {
"url": "https://github.com/cleverbrush/framework/issues",
"email": "andrew_zol@cleverbrush.com"
},
"description": "Schema Definition And Validation library, that allows to define and validate objects of any complexity",
"files": [
"dist"
],
"homepage": "https://schema.cleverbrush.com/docs/getting-started",
"keywords": [
"schema",
"validation",
"typescript",
"type-safe",
"runtime-validation",
"zod-alternative",
"schema-validation",
"standard-schema",
"cleverbrush"
],
"license": "BSD 3-Clause",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core.d.ts",
"import": "./dist/core.js"
},
"./extension": {
"types": "./dist/extension.d.ts",
"import": "./dist/extension.js"
},
"./string": {
"types": "./dist/builders/StringSchemaBuilder.d.ts",
"import": "./dist/builders/StringSchemaBuilder.js"
},
"./number": {
"types": "./dist/builders/NumberSchemaBuilder.d.ts",
"import": "./dist/builders/NumberSchemaBuilder.js"
},
"./boolean": {
"types": "./dist/builders/BooleanSchemaBuilder.d.ts",
"import": "./dist/builders/BooleanSchemaBuilder.js"
},
"./object": {
"types": "./dist/builders/ObjectSchemaBuilder.d.ts",
"import": "./dist/builders/ObjectSchemaBuilder.js"
},
"./array": {
"types": "./dist/builders/ArraySchemaBuilder.d.ts",
"import": "./dist/builders/ArraySchemaBuilder.js"
},
"./date": {
"types": "./dist/builders/DateSchemaBuilder.d.ts",
"import": "./dist/builders/DateSchemaBuilder.js"
},
"./any": {
"types": "./dist/builders/AnySchemaBuilder.d.ts",
"import": "./dist/builders/AnySchemaBuilder.js"
},
"./union": {
"types": "./dist/builders/UnionSchemaBuilder.d.ts",
"import": "./dist/builders/UnionSchemaBuilder.js"
},
"./tuple": {
"types": "./dist/builders/TupleSchemaBuilder.d.ts",
"import": "./dist/builders/TupleSchemaBuilder.js"
},
"./record": {
"types": "./dist/builders/RecordSchemaBuilder.d.ts",
"import": "./dist/builders/RecordSchemaBuilder.js"
},
"./function": {
"types": "./dist/builders/FunctionSchemaBuilder.d.ts",
"import": "./dist/builders/FunctionSchemaBuilder.js"
},
"./extern": {
"types": "./dist/builders/ExternSchemaBuilder.d.ts",
"import": "./dist/builders/ExternSchemaBuilder.js"
},
"./promise": {
"types": "./dist/builders/PromiseSchemaBuilder.d.ts",
"import": "./dist/builders/PromiseSchemaBuilder.js"
},
"./parse-string": {
"types": "./dist/builders/ParseStringSchemaBuilder.d.ts",
"import": "./dist/builders/ParseStringSchemaBuilder.js"
}
},
"sideEffects": false,
"name": "@cleverbrush/schema",
"readme": "https://github.com/cleverbrush/framework/tree/master/libs/schema#readme",
"repository": {
"type": "git",
"url": "github:cleverbrush/framework"
},
"scripts": {
"watch": "tsc --build --watch",
"build": "tsup && rm -f tsconfig.build.tsbuildinfo && tsc --project tsconfig.build.json --emitDeclarationOnly",
"clean": "rm -rf dist tsconfig.tsbuildinfo"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "4.3.2",
"devDependencies": {
"@cleverbrush/deep": "^4.3.2"
},
"peerDependencies": {
"@standard-schema/spec": "^1.1.0"
}
}