@lumiblue/secrets 0.1.15
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 +50 -0
- package/dist/index.d.ts +2501 -0
- package/dist/index.js +1496 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lumiblue/secrets",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"description": "Lumiblue secrets",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": true,
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/node": "26.4.1",
|
|
25
|
+
"dts-bundle-generator": "9.5.1",
|
|
26
|
+
"typescript": "6.0.3",
|
|
27
|
+
"vite": "8.2.2",
|
|
28
|
+
"vitest": "4.1.11"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build:vite": "vite build",
|
|
32
|
+
"build:types": "dts-bundle-generator -o dist/index.d.ts src/index.ts --project tsconfig.json --no-check",
|
|
33
|
+
"build": "npm run build:vite && npm run build:types && pnpm publish --dry-run --no-git-checks",
|
|
34
|
+
"upload": "pnpm build && pnpm publish --no-git-checks",
|
|
35
|
+
"test": "pnpm exec vitest run"
|
|
36
|
+
}
|
|
37
|
+
}
|