-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.38 KB
/
Copy pathpackage.json
File metadata and controls
145 lines (145 loc) · 4.38 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
141
142
143
144
145
{
"name": "vaulter",
"version": "1.0.73",
"description": "Multi-backend environment variable and secrets manager with AES-256-GCM encryption",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": [
"src/cli/preload.ts",
"src/load.ts",
"src/runtime/load.ts",
"dist/load.js",
"dist/runtime/load.js"
],
"keywords": [
"env",
"environment",
"variables",
"secrets",
"s3",
"minio",
"r2",
"encryption",
"aes-256-gcm",
"kubernetes",
"k8s",
"helm",
"terraform",
"terragrunt",
"cli",
"dotenv",
"monorepo",
"mcp",
"claude",
"ai",
"vaulter"
],
"author": "Forattini <contact@forattini.dev>",
"license": "MIT",
"homepage": "https://github.com/forattini-dev/vaulter",
"repository": {
"type": "git",
"url": "git+https://github.com/forattini-dev/vaulter.git"
},
"bugs": {
"url": "https://github.com/forattini-dev/vaulter/issues"
},
"files": [
"dist",
"action.yml",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./load": {
"types": "./dist/load.d.ts",
"import": "./dist/load.js",
"default": "./dist/load.js"
},
"./loader": {
"types": "./dist/loader.d.ts",
"import": "./dist/loader.js",
"default": "./dist/loader.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js",
"default": "./dist/runtime/index.js"
},
"./runtime/load": {
"types": "./dist/runtime/load.d.ts",
"import": "./dist/runtime/load.js",
"default": "./dist/runtime/load.js"
},
"./package.json": "./package.json"
},
"bin": {
"vaulter": "./dist/cli/index.js",
"vaulter-mcp": "./dist/mcp/index.js"
},
"scripts": {
"dev": "tsx watch src/cli/index.ts",
"build": "tsc && node -e \"const fs=require('fs');const shebang='#!/usr/bin/env -S node --disable-warning=ExperimentalWarning\\n';['dist/cli/index.js','dist/mcp/index.js'].forEach(f=>{if(fs.existsSync(f)){const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!')){fs.writeFileSync(f,shebang+c)}}})\"",
"build:bundle": "node esbuild.config.js",
"build:standalone": "node esbuild.config.js --standalone",
"build:binaries": "pnpm build:standalone && mkdir -p releases && pnpm exec pkg ./dist/bin/vaulter-standalone.cjs --output releases/vaulter --targets node20-linux-x64,node20-linux-arm64,node20-macos-x64,node20-macos-arm64,node20-win-x64",
"build:action": "node esbuild.config.js --action",
"build:all": "pnpm build && pnpm build:bundle && pnpm build:action",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:bundle": "pnpm build:bundle && node dist/bin/vaulter.cjs --help > /dev/null && node dist/bin/vaulter.cjs --version > /dev/null && echo 'bundle smoke test passed'",
"ci": "pnpm typecheck && pnpm test && pnpm test:bundle",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist releases",
"lint": "echo \"No linting configured for this project.\" && exit 0",
"verify:vaulter": "bash scripts/vaulter-verify-dev.sh",
"lint:dead": "tsc --noEmit --noUnusedLocals --noUnusedParameters",
"prepublishOnly": "pnpm build",
"cli": "tsx src/cli/index.ts",
"release": "pnpm version patch && git push && git push --tags",
"release:minor": "pnpm version minor && git push && git push --tags",
"release:major": "pnpm version major && git push && git push --tags"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cli-args-parser": "^1.0.6",
"dotenv": "^17.4.0",
"p-limit": "^7.3.0",
"s3db.js": "^21.4.9",
"tinyglobby": "^0.2.15",
"tuiuiu.js": "^1.0.58",
"yaml": "^2.8.3"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1022.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"@yao-pkg/pkg": "^6.14.2",
"esbuild": "^0.27.5",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"pnpm": {
"overrides": {
"tar": ">=7.5.8",
"@isaacs/brace-expansion": ">=5.0.1",
"fast-xml-parser": ">=5.3.6",
"ajv": ">=8.18.0",
"qs": ">=6.14.2"
}
}
}