|
1 | 1 | {
|
2 | 2 | "name": "h3-valibot",
|
| 3 | + "type": "module", |
3 | 4 | "version": "0.0.7",
|
4 | 5 | "description": "🤖 Schema validation for h3 using Valibot",
|
5 |
| - "license": "MIT", |
6 | 6 | "author": "Conner Bachmann <github@conner-bachmann.de>",
|
| 7 | + "license": "MIT", |
| 8 | + "keywords": [ |
| 9 | + "valibot", |
| 10 | + "h3", |
| 11 | + "validation" |
| 12 | + ], |
7 | 13 | "sideEffects": false,
|
8 |
| - "type": "module", |
9 | 14 | "exports": {
|
10 | 15 | ".": {
|
| 16 | + "types": "./dist/index.d.ts", |
11 | 17 | "import": "./dist/index.mjs",
|
12 |
| - "require": "./dist/index.cjs", |
13 |
| - "types": "./dist/index.d.ts" |
| 18 | + "require": "./dist/index.cjs" |
14 | 19 | }
|
15 | 20 | },
|
16 | 21 | "main": "./dist/index.cjs",
|
|
19 | 24 | "files": [
|
20 | 25 | "dist"
|
21 | 26 | ],
|
22 |
| - "keywords": [ |
23 |
| - "valibot", |
24 |
| - "h3", |
25 |
| - "validation" |
26 |
| - ], |
27 | 27 | "scripts": {
|
28 | 28 | "build": "unbuild",
|
29 |
| - "lint": "eslint --ext .ts .", |
| 29 | + "lint": "eslint .", |
30 | 30 | "release": "yarn build && changelogen --patch && git push --follow-tags && yarn publish",
|
| 31 | + "test": "vitest run", |
31 | 32 | "typecheck": "tsc --noEmit"
|
32 | 33 | },
|
33 |
| - "devDependencies": { |
34 |
| - "@types/node": "^17.0.23", |
35 |
| - "@typescript-eslint/eslint-plugin": "^5.30.5", |
36 |
| - "@typescript-eslint/parser": "^5.30.5", |
37 |
| - "changelogen": "^0.3.5", |
38 |
| - "eslint": "^8.12.0", |
39 |
| - "typescript": "^4.6.3", |
40 |
| - "unbuild": "^0.7.4", |
41 |
| - "vitest": "^0.17.0" |
42 |
| - }, |
43 | 34 | "dependencies": {
|
44 | 35 | "h3": "^1.13.0",
|
45 |
| - "valibot": "^0.42.1" |
| 36 | + "valibot": "^1.0.0-beta.3" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@antfu/eslint-config": "3.8.0", |
| 40 | + "@nuxtjs/eslint-config-typescript": "latest", |
| 41 | + "@types/node": "^20", |
| 42 | + "@types/serve-handler": "6.1.4", |
| 43 | + "@typescript-eslint/eslint-plugin": "8.14.0", |
| 44 | + "@typescript-eslint/parser": "8.14.0", |
| 45 | + "changelogen": "^0.5.7", |
| 46 | + "eslint": "^9.14.0", |
| 47 | + "typescript": "^5.6.3", |
| 48 | + "unbuild": "latest", |
| 49 | + "vite": "5.4.10", |
| 50 | + "vitest": "^2.1.4" |
46 | 51 | }
|
47 | 52 | }
|
0 commit comments