-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
93 lines (93 loc) · 2.39 KB
/
package.json
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
{
"name": "rescript-schema",
"version": "9.0.1",
"description": "🧬 The fastest parser in the entire JavaScript ecosystem with a focus on small bundle size and top-notch DX",
"keywords": [
"ReScript",
"Schema",
"Parser",
"Serializer",
"JSON",
"Encode",
"Decode",
"Validation",
"Contract",
"TypeScript",
"Zod",
"Valibot",
"Ajv",
"rescript-struct"
],
"homepage": "https://github.com/DZakh/rescript-schema#readme",
"bugs": {
"url": "https://github.com/DZakh/rescript-schema/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DZakh/rescript-schema.git"
},
"license": "MIT",
"author": "Dmitry Zakharov <dzakh.dev@gmail.com>",
"type": "module",
"main": "./dist/S.js",
"module": "./dist/S.mjs",
"types": "./src/S.d.ts",
"files": [
"dist",
"src/S_Core.res",
"src/S_Core.bs.js",
"src/S_Core.bs.mjs",
"src/S.res",
"src/S.resi",
"src/S.bs.js",
"src/S.bs.mjs",
"src/S.d.ts",
"RescriptSchema.gen.d.ts",
"rescript.json"
],
"scripts": {
"benchmark": "node ./packages/tests/src/benchmark/Benchmark.bs.mjs",
"benchmark:comparison": "node ./packages/tests/src/benchmark/comparison.js",
"coverage": "c8 --reporter=lcov npm test",
"build": "node ./packages/prepack/src/Prepack.bs.mjs",
"ppx:install": "node ./packages/rescript-schema-ppx/install.cjs",
"res": "rescript -w",
"res:build": "rescript build",
"test:res": "cd ./packages/tests && rescript clean && rescript -w",
"test": "ava",
"lint:stdlib": "rescript-stdlib-vendorer lint --project-path=packages/tests --ignore-path=src/ppx/Ppx_Primitive_test.res"
},
"ava": {
"extensions": {
"ts": "module",
"mjs": true
},
"files": [
"packages/tests/src/**/*_test.bs.mjs",
"packages/tests/src/**/*_test.ts"
],
"nodeArguments": [
"--no-warnings",
"--import=tsimp"
]
},
"devDependencies": {
"@dzakh/rescript-ava": "2.3.0",
"@rescript/core": "^1.3.0",
"ava": "5.2.0",
"benchmark": "2.1.4",
"c8": "7.12.0",
"rescript": "11.1.0",
"rescript-stdlib-vendorer": "1.1.0",
"rescript-schema": "link:",
"ts-expect": "1.3.0",
"tsimp": "2.0.12",
"typescript": "4.9.3",
"valibot": "0.42.1",
"zod": "3.24.1"
},
"peerDependencies": {
"rescript": "11.x"
},
"packageManager": "pnpm@9.0.5"
}