-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 851 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
{
"name": "dotenv-auto",
"version": "2.0.2",
"description": "Automatically loads `.env` files",
"keywords": [
"dotenv",
"env",
".env",
"environment",
"variables",
"config",
"settings",
"autload"
],
"license": "MIT",
"repository": "https://github.com/caioedut/dotenv-auto",
"author": {
"name": "Caio Teixeira",
"email": "[email protected]"
},
"files": [
"index.js",
"index.d.ts",
"api.js",
"api.d.ts"
],
"main": "index.js",
"scripts": {
"example": "tsx scripts/example.ts",
"build": "tsx scripts/build.ts",
"publish:stable": "tsx scripts/publish.ts"
},
"dependencies": {
"dotenv": "*"
},
"devDependencies": {
"@types/node": "^16.18.40",
"pmex": "^0.0.35",
"prettier": "^3.0.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}