-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.68 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.68 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@julr/vite-plugin-validate-env",
"version": "2.2.2",
"description": "✅ Vite plugin for validating your environment variables",
"keywords": [
"env",
"env-var",
"validation",
"vite",
"vite-plugin",
"zod"
],
"homepage": "https://github.com/Julien-R44/vite-plugin-validate-env#readme",
"bugs": {
"url": "https://github.com/Julien-R44/vite-plugin-validate-env/issues"
},
"license": "MIT",
"author": "Julien Ripouteau <julien@ripouteau.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/vite-plugin-validate-env.git"
},
"funding": "https://github.com/sponsors/Julien-R44",
"files": [
"dist"
],
"type": "module",
"exports": "./dist/index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown",
"dev": "tsdown",
"lint:check": "oxlint",
"format:check": "oxfmt --check .",
"lint": "oxlint --fix",
"format": "oxfmt --write .",
"prepublishOnly": "pnpm build",
"release": "pnpm build && release-it --ci",
"dev:playground": "pnpm vite -c playground/vite.config.ts",
"quick:test": "node bin/test.ts",
"test": "node bin/test.ts",
"typecheck": "tsc --noEmit",
"checks": "pnpm lint:check && pnpm format:check && pnpm typecheck"
},
"dependencies": {
"@poppinss/cliui": "^6.7.0",
"@poppinss/validator-lite": "^2.1.2",
"@standard-schema/spec": "^1.1.0",
"unconfig": "7.3.3"
},
"devDependencies": {
"@japa/assert": "^4.2.0",
"@japa/file-system": "^3.0.0",
"@japa/runner": "^5.3.0",
"@julr/tooling-configs": "^6.1.0",
"@release-it/conventional-changelog": "^10.0.6",
"@types/node": "^24.12.0",
"@vinejs/vine": "^4.3.0",
"arktype": "^2.2.0",
"cross-env": "^10.1.0",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"publint": "^0.3.18",
"release-it": "^19.2.4",
"tsdown": "^0.21.3",
"typescript": "^5.9.3",
"valibot": "^1.2.0",
"vite": "^8.0.0",
"zod": "^3.25.76"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.32.1",
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"push": true,
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
}
}