envibe 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +255 -0
- package/dist/cli/index.js +23224 -0
- package/dist/index.js +20751 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "envibe",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "The missing permission layer between AI agents and your .env",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"envibe": "./dist/cli/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "bun build ./src/cli/index.ts --outdir ./dist/cli --target node && bun build ./src/index.ts --outdir ./dist --target node",
|
|
23
|
+
"dev": "bun run ./src/cli/index.ts",
|
|
24
|
+
"test": "bun test",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "bun run build"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"env",
|
|
30
|
+
"environment",
|
|
31
|
+
"variables",
|
|
32
|
+
"secrets",
|
|
33
|
+
"ai",
|
|
34
|
+
"claude",
|
|
35
|
+
"mcp",
|
|
36
|
+
"security",
|
|
37
|
+
"access-control"
|
|
38
|
+
],
|
|
39
|
+
"author": "",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/bun": "latest",
|
|
43
|
+
"typescript": "^5"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
47
|
+
"commander": "^13.0.0",
|
|
48
|
+
"yaml": "^2.7.0"
|
|
49
|
+
}
|
|
50
|
+
}
|