-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 4.45 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 4.45 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "envilder",
"version": "0.10.0",
"description": "A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth",
"homepage": "https://envilder.com",
"author": {
"name": "Marçal Albert Castellví",
"email": "mac.albert@gmail.com",
"url": "https://github.com/macalbert/envilder"
},
"repo": "github:macalbert/envilder",
"repository": {
"type": "git",
"url": "git://github.com/macalbert/envilder.git"
},
"main": "./lib/envilder/apps/cli/Index.js",
"bin": {
"envilder": "lib/envilder/apps/cli/Index.js"
},
"scripts": {
"prepare": "lefthook install",
"clean": "pnpm store prune && pnpm dlx rimraf lib && pnpm dlx rimraf coverage && pnpm dlx rimraf node_modules",
"build": "tsc",
"build:gha": "ncc build src/envilder/apps/gha/Index.ts -o github-action/dist --minify",
"verify:gha": "pnpm build:gha && git diff --exit-code github-action/dist/index.js || (echo '❌ github-action/dist/index.js is not up to date. Run pnpm build:gha' && exit 1)",
"local:install": "pnpm build && node --loader ts-node/esm scripts/pack-and-install.ts",
"local:test-run": "pnpm build && node lib/envilder/apps/cli/Index.js --map=e2e/sample/envilder.json --envfile=e2e/sample/autogenerated.env",
"format": "biome check --write --unsafe && biome format --write",
"format:check": "biome check && biome format",
"lint": "secretlint \"**/*\" && biome check && tsc --noEmit",
"lint:fix": "biome lint --fix",
"test": "vitest run --reporter=verbose --coverage",
"test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
"test:update": "vitest run --reporter=verbose --update",
"release:publish": "npm pack --dry-run && npm publish --provenance",
"action-publish": "pnpm build:gha && pnpm verify:gha",
"release-patch": "pnpm version patch",
"release-minor": "pnpm version minor",
"release-major": "pnpm version major",
"release-prerelease": "pnpm version prerelease",
"dev:run": "node --env-file=dev.env --import tsx src/envilder/apps/cli/Index.ts",
"env:generate": "pnpx envilder --map=envilder.json --envfile=.env",
"env:ensure": "node -e \"require('fs').existsSync('.env')||process.exit(1)\" || pnpm env:generate",
"docker:up": "pnpm env:ensure && docker compose -f docker-compose.yml up -d",
"docker:down": "docker compose -f docker-compose.yml down"
},
"keywords": [
"env",
"dotenv",
"aws",
"ssm",
"parameter-store",
"cli",
"environment",
"secrets",
"secret-management",
"automation",
"config",
"aws-cli",
"devops",
"ci-cd",
"secure",
"envfile",
"github-actions",
"github-action",
"actions",
"azure",
"key-vault",
"azure-key-vault",
"multi-cloud"
],
"bugs": {
"url": "https://github.com/macalbert/envilder/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"ROADMAP.md",
"docs/CHANGELOG.md",
"docs/changelogs/**",
"docs/SECURITY.md"
],
"type": "module",
"dependencies": {
"@aws-sdk/client-ssm": "^3.1019.0",
"@aws-sdk/credential-providers": "^3.1019.0",
"@azure/core-rest-pipeline": "^1.23.0",
"@azure/identity": "^4.13.1",
"@azure/keyvault-secrets": "^4.10.0",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"inversify": "^8.1.0",
"picocolors": "^1.1.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@secretlint/secretlint-rule-preset-recommend": "^13.0.0",
"@testcontainers/localstack": "^11.13.0",
"@types/node": "catalog:",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "catalog:",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"glob": "^13.0.6",
"lefthook": "^2.1.4",
"secretlint": "^13.0.0",
"testcontainers": "^11.13.0",
"ts-node": "catalog:",
"tsx": "^4.21.0",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"cpu-features",
"esbuild",
"lefthook",
"protobufjs",
"sharp",
"ssh2"
],
"overrides": {
"defu": ">=6.1.5",
"lodash": ">=4.18.0",
"vite": "^7.3.2",
"yaml": ">=2.8.3"
}
}
}