-
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathpackage.json
79 lines (79 loc) · 1.87 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
{
"name": "valibot",
"description": "The modular and type safe schema library for validating structural data",
"version": "1.0.0-rc.4",
"license": "MIT",
"author": "Fabian Hiller",
"homepage": "https://valibot.dev",
"repository": {
"type": "git",
"url": "https://github.com/fabian-hiller/valibot"
},
"keywords": [
"modular",
"typescript",
"schema",
"validation",
"parsing",
"bundle-size",
"type-safe",
"runtime"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"play": "tsm ./playground.ts",
"test": "vitest --typecheck",
"coverage": "vitest run --coverage --isolate",
"lint": "eslint \"src/**/*.ts*\" && tsc --noEmit && deno check ./src/index.ts",
"lint.fix": "eslint \"src/**/*.ts*\" --fix",
"format": "prettier --write ./src",
"format.check": "prettier --check ./src",
"build": "tsup"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-redos-detector": "^3.1.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"jsdom": "^26.0.0",
"tsm": "^2.3.0",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.2.0",
"vitest": "3.0.7"
},
"peerDependencies": {
"typescript": ">=5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}