-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
100 lines (100 loc) · 2.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@julr/vite-plugin-validate-env",
"type": "module",
"version": "1.3.0",
"packageManager": "[email protected]",
"description": "✅ Vite plugin for validating your environment variables",
"author": "Julien Ripouteau <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/Julien-R44",
"homepage": "https://github.com/Julien-R44/vite-plugin-validate-env#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/vite-plugin-validate-env.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/vite-plugin-validate-env/issues"
},
"keywords": [
"vite",
"vite-plugin",
"env-var",
"validation",
"zod",
"env"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsup",
"dev": "tsup",
"lint": "eslint .",
"format": "prettier --write .",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && pnpm publish",
"dev:playground": "pnpm vite -c playground/vite.config.ts",
"quick:test": "node --enable-source-maps --loader ts-node/esm bin/test.ts",
"test": "node --enable-source-maps --loader ts-node/esm bin/test.ts",
"typecheck": "tsc --noEmit",
"checks": "pnpm lint && pnpm typecheck"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"dependencies": {
"@poppinss/cliui": "^6.4.2",
"@poppinss/validator-lite": "^1.0.3",
"unconfig": "^0.6.1"
},
"devDependencies": {
"@japa/assert": "^4.0.1",
"@japa/file-system": "^2.3.2",
"@japa/runner": "^4.1.0",
"@julr/tooling-configs": "^3.0.1",
"@standard-schema/spec": "1.0.0-rc.0",
"@types/node": "^22.10.7",
"arktype": "^2.0.0",
"bumpp": "^9.10.1",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"valibot": "1.0.0-beta.12",
"vite": "^6.0.11",
"zod": "^3.24.1"
},
"prettier": "@julr/tooling-configs/prettier"
}