-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "fastest-validator-decorators",
"author": "Toby de Havilland",
"version": "2.2.0",
"description": "Fastest validator decorators",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmauryD/fastest-validator-decorators.git"
},
"maintainers": [
"AmauryD <deflorenne.amaury@gmail.com> (https://github.com/AmauryD)"
],
"scripts": {
"clean": "rm -rf dist/",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prebuild": "pnpm run clean",
"lint": "eslint --ignore-path .gitignore **/*.ts",
"test": "pnpm vitest --watch=false",
"pretest": "pnpm run lint",
"prepublish": "pnpm run test && pnpm run build"
},
"files": [
"dist"
],
"keywords": [
"validation",
"validator",
"validators",
"validate",
"schema",
"typescript",
"decorators"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@swc/core": "^1.7.19",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.0.0",
"fastest-validator": "~1.19.0",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"peerDependencies": {
"fastest-validator": "^1.15.0",
"reflect-metadata": "^0.1.13"
},
"type": "module",
"dependencies": {
"type-fest": "~4.25.0"
},
"volta": {
"node": "18.20.4"
}
}