@lorion-org/runtime-config-node 1.0.0-beta.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/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@lorion-org/runtime-config-node",
3
+ "version": "1.0.0-beta.0",
4
+ "description": "Node file-system helpers for runtime-config directories and files.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/lorion-org/lorion.git",
9
+ "directory": "packages/runtime-config-node"
10
+ },
11
+ "homepage": "https://github.com/lorion-org/lorion/tree/main/packages/runtime-config-node#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/lorion-org/lorion/issues"
14
+ },
15
+ "type": "module",
16
+ "sideEffects": false,
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "main": "./dist/index.cjs",
21
+ "module": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "import": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ },
29
+ "require": {
30
+ "types": "./dist/index.d.cts",
31
+ "default": "./dist/index.cjs"
32
+ }
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "examples",
38
+ "LICENSE"
39
+ ],
40
+ "keywords": [
41
+ "runtime-config",
42
+ "filesystem",
43
+ "node",
44
+ "typescript"
45
+ ],
46
+ "engines": {
47
+ "node": "^20.19.0 || >=22.12.0"
48
+ },
49
+ "dependencies": {
50
+ "ajv": "^8.17.1",
51
+ "@lorion-org/runtime-config": "^1.0.0-beta.0"
52
+ },
53
+ "scripts": {
54
+ "build": "tsup src/index.ts --format esm,cjs --dts",
55
+ "clean": "rimraf coverage dist tsconfig.tsbuildinfo",
56
+ "lint": "eslint src --ext .ts",
57
+ "test": "vitest run --root ../.. --config vitest.config.mts packages/runtime-config-node/src/index.spec.ts",
58
+ "package:check": "pnpm build && pnpm pack --dry-run && publint",
59
+ "typecheck": "tsc -p tsconfig.json --noEmit"
60
+ }
61
+ }