@olane/o-gateway-interface 0.6.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/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # Olane Gateways
2
+
3
+ TLDR; think DNS registrars but for olane. These bad boys help organize how the first term in the olane addresses are resolved (`o://brendon`).
4
+
5
+ ## What is this?
6
+ An Olane gateway is a registry tool. These registries help prevent conflicting namespaces, bridge into walled gardens, broker communication, and much more.
7
+
8
+ The Olane gateway dream: to create a system of trust for AI agents, Humans, and other future entities to collaborate safely.
9
+
10
+ ## Approved Gateways
11
+ If you would like to apply to become an approved gateway, please reach out to us at [gateways@olane.com](mailto:gateways@olane.com).
12
+ 1. Copass - https://copass.id, where you can create your AI twin.
@@ -0,0 +1,2 @@
1
+ export * from './interfaces/index.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from './interfaces/index.js';
@@ -0,0 +1,2 @@
1
+ export * from './o-gateway.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
@@ -0,0 +1 @@
1
+ export * from './o-gateway.js';
@@ -0,0 +1,8 @@
1
+ export interface oGateway {
2
+ name: string;
3
+ transports: string[];
4
+ description: string;
5
+ logo: string;
6
+ website: string;
7
+ }
8
+ //# sourceMappingURL=o-gateway.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"o-gateway.d.ts","sourceRoot":"","sources":["../../src/interfaces/o-gateway.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;CACjB"}
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@olane/o-gateway-interface",
3
+ "version": "0.6.1",
4
+ "type": "module",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "default": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "dist/**/*",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "scripts": {
19
+ "test": "echo 'No tests'",
20
+ "dev": "DEBUG=o-protocol:* npx tsx src/tests/index.ts",
21
+ "build": "tsc",
22
+ "deep:clean": "rm -rf node_modules && rm package-lock.json",
23
+ "start:prod": "node dist/index.js",
24
+ "prepublishOnly": "npm run build",
25
+ "update:lib": "npm install @olane/o-core@latest",
26
+ "lint": "eslint src/**/*.ts"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/olane-labs/olane.git"
31
+ },
32
+ "author": "oLane Inc.",
33
+ "license": "ISC",
34
+ "description": "oLane Core",
35
+ "devDependencies": {
36
+ "@eslint/eslintrc": "^3.3.1",
37
+ "@eslint/js": "^9.29.0",
38
+ "@olane/o-config": "0.6.1",
39
+ "@olane/o-core": "0.6.1",
40
+ "@olane/o-protocol": "0.6.1",
41
+ "@olane/o-tool": "0.6.1",
42
+ "@tsconfig/node20": "^20.1.6",
43
+ "@types/jest": "^30.0.0",
44
+ "@typescript-eslint/eslint-plugin": "^8.34.1",
45
+ "@typescript-eslint/parser": "^8.34.1",
46
+ "eslint": "^9.29.0",
47
+ "eslint-config-prettier": "^10.1.6",
48
+ "eslint-plugin-prettier": "^5.5.0",
49
+ "globals": "^16.2.0",
50
+ "jest": "^30.0.0",
51
+ "prettier": "^3.5.3",
52
+ "ts-jest": "^29.4.0",
53
+ "ts-node": "^10.9.2",
54
+ "tsconfig-paths": "^4.2.0",
55
+ "tsx": "^4.20.3",
56
+ "typescript": "5.4.5"
57
+ },
58
+ "peerDependencies": {
59
+ "@olane/o-config": "^0.6.1",
60
+ "@olane/o-core": "^0.6.1",
61
+ "@olane/o-protocol": "^0.6.1",
62
+ "@olane/o-tool": "^0.6.1"
63
+ },
64
+ "dependencies": {
65
+ "debug": "^4.4.1",
66
+ "dotenv": "^16.5.0"
67
+ }
68
+ }