healr 1.0.0 → 1.0.1
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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "healr",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Self-healing supervisor for developer apps. Detects crashes, port conflicts, memory leaks — and fixes them.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/aadesh0706/healr#readme",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node": ">=18"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
|
-
"build": "tsc",
|
|
25
|
+
"build": "tsc && node -e \"const fs=require('fs');const f='dist/bin.js';let c=fs.readFileSync(f,'utf8');c=c.replace(/\\r\\n/g,'\\n');fs.writeFileSync(f,c);console.log('bin.js: LF line endings set');\"",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
27
|
"dev": "tsc --watch",
|
|
28
28
|
"start": "node dist/bin.js"
|