-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "envase",
"version": "1.3.0",
"type": "module",
"packageManager": "npm@11.4.2",
"author": "Mateusz Tkacz",
"homepage": "https://github.com/CatchMe2/envase",
"repository": {
"type": "git",
"url": "git+https://github.com/CatchMe2/envase.git"
},
"bugs": {
"url": "https://github.com/CatchMe2/envase/issues"
},
"description": "Type-safe environment variable validation with Standard Schema compliance",
"license": "MIT",
"keywords": [
"typescript",
"environment-variables",
"validation",
"standard-schema",
"zod",
"valibot",
"arktype"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "biome check . && tsc",
"lint:fix": "biome check --write .",
"test": "vitest --typecheck --coverage",
"prepublishOnly": "npm run build"
},
"bin": {
"envase": "dist/cli/main.js"
},
"dependencies": {
"cac": "^6.7.14",
"diff": "^8.0.3",
"type-fest": "^5.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@lokalise/tsconfig": "^2.0.0",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.18",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"valibot": "^1.0.0",
"vitest": "^4.0.18",
"zod": "^4.3.6"
}
}