@galaxus/chabis-application-config 0.1.2

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 ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@galaxus/chabis-application-config",
3
+ "version": "0.1.2",
4
+ "description": "Type-safe, layered application configuration implementing the Chabis application-config contract: YAML/TOML files, Google Parameter Manager and Azure Key Vault secrets, schema-driven env overrides, and Standard Schema validation.",
5
+ "homepage": "https://github.com/DigitecGalaxus/chabis-application-config-nodejs#rleeadme",
6
+ "bugs": {
7
+ "url": "https://github.com/DigitecGalaxus/chabis-application-config-nodejs/issues"
8
+ },
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/DigitecGalaxus/chabis-application-config-nodejs.git"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "type": "module",
20
+ "sideEffects": false,
21
+ "main": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.js"
27
+ }
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "scripts": {
33
+ "build": "tsup",
34
+ "dev": "tsup --watch",
35
+ "test": "vitest run",
36
+ "test:watch": "vitest",
37
+ "typecheck": "tsc --noEmit",
38
+ "lint": "oxlint",
39
+ "fmt": "oxfmt --write .",
40
+ "fmt:check": "oxfmt --check .",
41
+ "check": "pnpm run fmt:check && pnpm run lint && pnpm run typecheck && pnpm run build && pnpm run test",
42
+ "prepack": "pnpm run build",
43
+ "prepublishOnly": "pnpm run build",
44
+ "changeset": "changeset",
45
+ "version": "changeset version",
46
+ "release": "pnpm run build && changeset publish"
47
+ },
48
+ "dependencies": {
49
+ "@google-cloud/parametermanager": "^0.5.2"
50
+ },
51
+ "devDependencies": {
52
+ "@azure/identity": "^4.13.1",
53
+ "@azure/keyvault-secrets": "^4.11.2",
54
+ "@changesets/cli": "^2.31.0",
55
+ "@standard-schema/spec": "^1.1.0",
56
+ "@types/node": "^24.0.0",
57
+ "@valibot/to-json-schema": "^1.7.1",
58
+ "oxfmt": "^0.56.0",
59
+ "oxlint": "^1.71.0",
60
+ "smol-toml": "^1.7.0",
61
+ "tsup": "^8.5.1",
62
+ "typescript": "^6.0.3",
63
+ "valibot": "^1.4.2",
64
+ "vitest": "^4.1.9",
65
+ "yaml": "^2.8.1",
66
+ "zod": "^4.4.3"
67
+ },
68
+ "peerDependencies": {
69
+ "@azure/identity": "^4.13.1",
70
+ "@azure/keyvault-secrets": "^4.11.2",
71
+ "@valibot/to-json-schema": "^1.7.0",
72
+ "arktype": "*",
73
+ "valibot": "*",
74
+ "zod": ">=3.24.0"
75
+ },
76
+ "peerDependenciesMeta": {
77
+ "@azure/identity": {
78
+ "optional": true
79
+ },
80
+ "@azure/keyvault-secrets": {
81
+ "optional": true
82
+ },
83
+ "@valibot/to-json-schema": {
84
+ "optional": true
85
+ },
86
+ "arktype": {
87
+ "optional": true
88
+ },
89
+ "valibot": {
90
+ "optional": true
91
+ },
92
+ "zod": {
93
+ "optional": true
94
+ }
95
+ },
96
+ "engines": {
97
+ "node": ">=24"
98
+ },
99
+ "packageManager": "pnpm@11.9.0"
100
+ }