aai-gateway 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/LICENSE +190 -0
- package/README.md +231 -0
- package/dist/cli.js +93 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -0
- package/dist/server-B0zE5-Fp.js +8691 -0
- package/dist/server-B0zE5-Fp.js.map +1 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aai-gateway",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AAI Gateway - Agent App Interface Protocol Gateway for direct application capability invocation",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
12
|
+
"bin": {
|
|
13
|
+
"aai-gateway": "./dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "vite-node src/index.ts",
|
|
17
|
+
"build": "tsc && vite build",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"lint": "eslint src --ext .ts",
|
|
20
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
21
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"test:single": "vitest run --testNamePattern",
|
|
27
|
+
"clean": "rm -rf dist",
|
|
28
|
+
"prepublishOnly": "npm run build"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"aai",
|
|
32
|
+
"agent",
|
|
33
|
+
"mcp",
|
|
34
|
+
"automation",
|
|
35
|
+
"applescript",
|
|
36
|
+
"com",
|
|
37
|
+
"dbus"
|
|
38
|
+
],
|
|
39
|
+
"author": "Bob",
|
|
40
|
+
"license": "Apache-2.0",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "git+https://github.com/gybob/aai-gateway.git"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/gybob/aai-gateway#readme",
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/gybob/aai-gateway/issues"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18.0.0"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
54
|
+
"pino": "^8.17.0",
|
|
55
|
+
"pino-pretty": "^10.3.0",
|
|
56
|
+
"zod": "^3.22.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "^20.10.0",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^6.15.0",
|
|
61
|
+
"@typescript-eslint/parser": "^6.15.0",
|
|
62
|
+
"eslint": "^8.56.0",
|
|
63
|
+
"eslint-config-prettier": "^9.1.0",
|
|
64
|
+
"eslint-plugin-import": "^2.29.0",
|
|
65
|
+
"prettier": "^3.1.0",
|
|
66
|
+
"typescript": "^5.3.0",
|
|
67
|
+
"vite": "^5.0.0",
|
|
68
|
+
"vite-node": "^1.0.0",
|
|
69
|
+
"vitest": "^1.0.0",
|
|
70
|
+
"@vitest/coverage-v8": "^1.0.0"
|
|
71
|
+
}
|
|
72
|
+
}
|