@luckystack/secret-manager 0.1.3 → 0.1.5
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/package.json +54 -54
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@luckystack/secret-manager",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"private": false,
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"type": "module",
|
|
9
|
-
"description": "Rotation-aware secret resolver client for LuckyStack. Commit `.env` pointers (e.g. OPENAI_KEY=OPENAI_AUTHORIZATION_KEY_V5) instead of real secrets; at boot this client resolves them against an external append-only secret-manager server and writes the real values into process.env. Supports local / remote / hybrid modes + opt-in dev hot reload.",
|
|
10
|
-
"license": "MIT",
|
|
11
|
-
"author": "Mathijs van Melick <mathijsvanmelick3@gmail.com>",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+https://github.com/ItsLucky23/LuckyStack-v2.git",
|
|
15
|
-
"directory": "packages/secret-manager"
|
|
16
|
-
},
|
|
17
|
-
"homepage": "https://github.com/ItsLucky23/LuckyStack-v2/tree/master/packages/secret-manager#readme",
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/ItsLucky23/LuckyStack-v2/issues"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"luckystack",
|
|
23
|
-
"secrets",
|
|
24
|
-
"secret-manager",
|
|
25
|
-
"env",
|
|
26
|
-
"dotenv",
|
|
27
|
-
"rotation",
|
|
28
|
-
"versioning"
|
|
29
|
-
],
|
|
30
|
-
"engines": {
|
|
31
|
-
"node": ">=20.0.0"
|
|
32
|
-
},
|
|
33
|
-
"main": "./dist/index.js",
|
|
34
|
-
"types": "./dist/index.d.ts",
|
|
35
|
-
"exports": {
|
|
36
|
-
".": {
|
|
37
|
-
"types": "./dist/index.d.ts",
|
|
38
|
-
"import": "./dist/index.js"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"files": [
|
|
42
|
-
"dist",
|
|
43
|
-
"README.md",
|
|
44
|
-
"CLAUDE.md",
|
|
45
|
-
"docs",
|
|
46
|
-
"LICENSE",
|
|
47
|
-
"CHANGELOG.md"
|
|
48
|
-
],
|
|
49
|
-
"scripts": {
|
|
50
|
-
"build": "tsup",
|
|
51
|
-
"build:watch": "tsup --watch",
|
|
52
|
-
"test": "vitest run"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@luckystack/secret-manager",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"private": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"description": "Rotation-aware secret resolver client for LuckyStack. Commit `.env` pointers (e.g. OPENAI_KEY=OPENAI_AUTHORIZATION_KEY_V5) instead of real secrets; at boot this client resolves them against an external append-only secret-manager server and writes the real values into process.env. Supports local / remote / hybrid modes + opt-in dev hot reload.",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "Mathijs van Melick <mathijsvanmelick3@gmail.com>",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/ItsLucky23/LuckyStack-v2.git",
|
|
15
|
+
"directory": "packages/secret-manager"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/ItsLucky23/LuckyStack-v2/tree/master/packages/secret-manager#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/ItsLucky23/LuckyStack-v2/issues"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"luckystack",
|
|
23
|
+
"secrets",
|
|
24
|
+
"secret-manager",
|
|
25
|
+
"env",
|
|
26
|
+
"dotenv",
|
|
27
|
+
"rotation",
|
|
28
|
+
"versioning"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=20.0.0"
|
|
32
|
+
},
|
|
33
|
+
"main": "./dist/index.js",
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./dist/index.d.ts",
|
|
38
|
+
"import": "./dist/index.js"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"README.md",
|
|
44
|
+
"CLAUDE.md",
|
|
45
|
+
"docs",
|
|
46
|
+
"LICENSE",
|
|
47
|
+
"CHANGELOG.md"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsup",
|
|
51
|
+
"build:watch": "tsup --watch",
|
|
52
|
+
"test": "vitest run"
|
|
53
|
+
}
|
|
54
|
+
}
|