@synoi/gateway-lite 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.
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@synoi/gateway-lite",
3
+ "version": "0.1.0",
4
+ "description": "Self-hosted SynOI lite daemon: local governed-action approval with operator-owned self-signed receipts. No account, no managed custody, no network call to run it.",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://synoi.systems",
7
+ "keywords": [
8
+ "synoi",
9
+ "governance",
10
+ "ai-governance",
11
+ "self-hosted",
12
+ "receipts",
13
+ "gap",
14
+ "gate"
15
+ ],
16
+ "bin": {
17
+ "synoi-gateway-lite": "./bin/synoi-gateway-lite.js"
18
+ },
19
+ "main": "dist/daemon.js",
20
+ "types": "dist/daemon.d.ts",
21
+ "type": "commonjs",
22
+ "files": [
23
+ "dist",
24
+ "bin",
25
+ "README.md",
26
+ "LICENSE",
27
+ "npm-shrinkwrap.json"
28
+ ],
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "engines": {
33
+ "node": ">=22"
34
+ },
35
+ "scripts": {
36
+ "start": "node bin/synoi-gateway-lite.js"
37
+ },
38
+ "dependencies": {
39
+ "@noble/curves": "^1.9.7",
40
+ "@noble/post-quantum": "^0.6.1",
41
+ "@synoi/gap": "1.1.0",
42
+ "@synoi/sraid": "0.2.0",
43
+ "better-sqlite3": "^11.10.0",
44
+ "express": "^4.19.2"
45
+ }
46
+ }