-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@shady/validator",
"description": "Simple validation utility",
"author": "Jamshed Javed",
"homepage": "https://github.com/JamShady/validator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JamShady/validator.git"
},
"keywords": [
"validator",
"validation",
"input"
],
"private": true,
"version": "1.0.0",
"bugs": {
"url": "https://github.com/JamShady/validator/issues"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/validator.cjs",
"module": "./dist/validator.js",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"files": [
"src/",
"!src/**/*.test.ts",
"dist/"
],
"devDependencies": {
"@types/validator": "^13.11.09",
"@vitest/coverage-v8": "^1.3.1",
"typescript": "^5.3.3",
"validator": "^13.11.0",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.3.1"
}
}