relife2 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/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "relife2",
3
+ "version": "1.0.0",
4
+ "description": "Process manager for Node.js & Bun apps — a predictable PM2 alternative: exactly one locked daemon, no silent self-duplication, Bun as a first-class citizen.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "engines": {
8
+ "node": ">=20"
9
+ },
10
+ "bin": {
11
+ "relife2": "dist/cli.js",
12
+ "rl2": "dist/cli.js"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "node scripts/build.mjs",
19
+ "build:watch": "node scripts/build.mjs --watch",
20
+ "build:single": "node scripts/build-single.mjs",
21
+ "build:single:linux": "node scripts/build-single.mjs --target linux-x64",
22
+ "typecheck": "tsc --noEmit",
23
+ "lint": "biome check .",
24
+ "lint:fix": "biome check --write .",
25
+ "test": "npm run build && node --test test/cli.smoke.test.mjs test/m1.daemon.integration.test.mjs test/m2.config.golden.test.mjs test/m2.logs.integration.test.mjs test/m3.stability.test.mjs test/m4.bunmemory.test.mjs test/m5.persistence.test.mjs test/m7.integrity.test.mjs",
26
+ "bench": "node scripts/bench.mjs",
27
+ "dist:tar": "node scripts/dist-tar.mjs",
28
+ "dist:rpm": "node scripts/dist-rpm.mjs",
29
+ "dist:deb": "node scripts/dist-deb.mjs",
30
+ "dist:all": "npm run build:single:linux && npm run dist:tar && npm run dist:rpm && npm run dist:deb",
31
+ "cli": "node dist/cli.js"
32
+ },
33
+ "devDependencies": {
34
+ "@biomejs/biome": "^2.0.0",
35
+ "@types/node": "^22.0.0",
36
+ "esbuild": "^0.25.0",
37
+ "typescript": "^5.8.0"
38
+ }
39
+ }