-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "vite-plugin-valibot-env",
"version": "0.9.1",
"description": "A Vite plugin to validate environment variables against a Valibot schema",
"license": "MIT",
"author": "Jan T. Sott",
"repository": {
"type": "git",
"url": "https://github.com/idleberg/vite-plugin-valibot-env"
},
"keywords": [
"vite-plugin",
"valibot"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint:code": "eslint **/*.json ./src/**/*.ts --no-warn-ignored",
"lint:deps": "knip --production",
"lint": "concurrently --prefix '{name}' -c 'blue,green' 'npm:lint:*'",
"prepack": "npm run build",
"prepare": "husky",
"publish:jsr": "deno publish",
"publish:npm": "np --no-yarn --any-branch",
"test": "uvu tests --require tsm --ignore \"fixtures\" --ignore \"helper.ts\""
},
"dependencies": {
"kleur": "^4.1.5",
"log-symbols": "^7.0.0"
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.10.0",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"eslint": "9.15.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-perfectionist": "^4.1.2",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"knip": "^5.38.1",
"lint-staged": "^15.2.10",
"np": "^10.1.0",
"prettier": "^3.4.1",
"strip-ansi": "^7.1.0",
"tsm": "^2.3.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "8.16.0",
"uvu": "^0.5.6",
"valibot": "1.0.0-beta.8",
"vite": "^6.0.1"
},
"peerDependencies": {
"valibot": ">=0.30 <=0.42 || >=1.0.0-beta.0 <=1.0.0-beta.8",
"vite": ">=5 || >=6"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --cache --write"
]
},
"packageManager": "[email protected]+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}