-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 KB
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
{
"name": "vite-plugin-valibot-env",
"version": "1.0.2",
"description": "A Vite plugin to validate environment variables against a Valibot schema",
"license": "MIT",
"author": "Jan T. Sott",
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/vite-plugin-valibot-env.git"
},
"keywords": [
"vite-plugin",
"valibot"
],
"type": "module",
"exports": {
"types": "./dist/plugin.d.mts",
"import": "./dist/plugin.mjs"
},
"types": "./dist/plugin.d.mts",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint:code": "biome check",
"lint:e18e": "e18e-cli analyze",
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
"prepack": "npm run build",
"publish:jsr": "deno publish",
"publish:npm": "np",
"test": "uvu tests --require tsm --ignore \"fixtures\" --ignore \"helper.ts\""
},
"dependencies": {
"is-unicode-supported": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@idleberg/configs": "^0.4.2",
"@types/node": "^24.12.0",
"concurrently": "^9.2.1",
"dotenv": "^17.3.1",
"np": "^11.0.2",
"strip-ansi": "^7.2.0",
"tsdown": "^0.21.2",
"tsm": "^2.3.0",
"typescript": "^5.9.3",
"uvu": "^0.5.6"
},
"peerDependencies": {
"valibot": ">=1.0.0",
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}