forked from logfoxai/runtyp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.4 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
{
"name": "runtyp",
"version": "1.0.0",
"description": "Lightning-fast, zero-dependency runtime validation for TS/JS. 25x faster than zod with a cleaner API.",
"keywords": [
"joi",
"zod",
"myzod",
"joi-like",
"validation",
"runtime",
"type",
"typescript",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/logspacehq/runtyp.git"
},
"homepage": "https://github.com/logspacehq/runtyp",
"license": "MIT",
"author": "Marc H. Weiner <mhweiner234@gmail.com>",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"!dist/**/*.spec.*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "c8 kizu -f 'src/**/*.spec.ts' && c8 report -r text -r html",
"benchmark": "npm run build && node benchmark.js",
"lint": "eslint ./ --ext .js,.ts",
"build": "tsc"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"c8": "^9.1.0",
"eslint": "^8.39.0",
"joi": "18.0.1",
"kizu": "3.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"yup": "1.7.1",
"zod": "4.1.12"
}
}