-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 901 Bytes
/
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
{
"name": "envario",
"version": "1.0.5",
"description": "Validate and load .env files with type-safe checks.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc"
},
"bin": {
"envario": "dist/cli.js"
},
"keywords": [
".env",
"environment",
"variables",
"typescript",
"javascript",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iamfrerot/envario.git"
},
"homepage": "https://github.com/iamfrerot/envario",
"bugs": {
"url": "https://github.com/iamfrerot/envario/issues"
},
"author": "frerot",
"license": "MIT",
"dependencies": {
"@types/node": "^22.10.6",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"dotenv": "^16.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}