-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.97 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
{
"name": "envars",
"version": "1.1.0",
"packageManager": "[email protected]",
"description": "Load environment variables from .env files. Decode secret values from AWS Secrets Manager, Google Secret Manager, and other sources.",
"keywords": [
".env",
"aws",
"cloud",
"config",
"dotenv",
"env",
"environment variables",
"environment",
"expand",
"gcp",
"google",
"secret manager",
"secret",
"secrets management",
"secrets",
"variables",
"vite"
],
"license": "MIT",
"author": {
"name": "Kriasoft",
"email": "[email protected]",
"url": "https://kriasoft.com"
},
"repository": "github:kriasoft/envars",
"contributors": [
"Konstantin Tarkus <[email protected]>"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/koistya"
},
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "ava"
},
"dependencies": {
"@google-cloud/secret-manager": "^5.6.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"esbuild": "^0.24.2",
"module-from-string": "^3.3.1",
"parent-module": "^3.1.0",
"read-pkg-up": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"ava": "^6.2.0",
"envalid": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false
},
"ava": {
"workerThreads": false,
"watchMode": {
"ignoreChanges": [
".env.*",
".env",
"env.ts"
]
}
}
}