@mutmutco/installer-launcher 0.1.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.
@@ -0,0 +1,9 @@
1
+ {
2
+ "$comment": "Copy to dist/product.json (via build.mjs --product-config) and edit per product. publicKey is the base64 of the RAW 32-byte Ed25519 public key.",
3
+ "product": "example-product",
4
+ "host": "https://gate.example.com",
5
+ "loginKind": "github",
6
+ "githubClientId": "EXAMPLE_CLIENT_ID",
7
+ "publicKey": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
8
+ "binName": "example-product"
9
+ }
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@mutmutco/installer-launcher",
3
+ "version": "0.1.0",
4
+ "description": "Single-executable (SEA) launcher: sign-in, gated payload fetch, self-update. One copy ships per product.",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
7
+ "engines": {
8
+ "node": ">=22"
9
+ },
10
+ "bin": {
11
+ "launcher": "dist/launcher.js"
12
+ },
13
+ "main": "dist/launcher.js",
14
+ "exports": {
15
+ ".": "./dist/launcher.js"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md",
20
+ "config/product.template.json"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "build": "node build.mjs",
27
+ "test": "vitest run",
28
+ "typecheck": "tsc --noEmit"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "^22.0.0",
32
+ "esbuild": "^0.28.1",
33
+ "typescript": "^5.7.0",
34
+ "vitest": "^4.1.0"
35
+ }
36
+ }