-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.82 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
{
"name": "validator-fns",
"version": "2.0.1",
"description": "Small asynchronous validation library",
"license": "MIT",
"files": [
"dist",
"runkit.js"
],
"author": {
"name": "Simon Ingeson",
"url": "https://smonn.se"
},
"keywords": [
"async",
"browser",
"browsers",
"function",
"functional",
"functions",
"isomorphic",
"node",
"promise",
"ssr",
"typescript",
"universal",
"validate",
"validation",
"validator"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./index.cjs"
}
}
},
"typings": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"scripts": {
"build": "tsup",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "run-s lint test build",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "9.2.0",
"@types/node": "20.12.12",
"@vitest/coverage-v8": "1.6.0",
"eslint": "9.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-unicorn": "53.0.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"tslib": "2.6.2",
"tsup": "8.0.2",
"typescript": "5.4.5",
"typescript-eslint": "7.9.0",
"vitest": "1.6.0"
},
"repository": "github:smonn/validator-fns",
"homepage": "https://validator-fns.smonn.se/",
"runkitExampleFilename": "runkit.js",
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}