-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.22 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "universal-app-bridge",
"version": "1.3.1",
"description": "Smart function discovery and framework-level desktop app control for AI agents. Desktop + server dual-mode with Vision AI fallback. Hook into Chrome, Electron, Qt, GTK, WPF, Flutter, Java, and Office apps with a unified API.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"uab": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./connector": {
"types": "./dist/connector.d.ts",
"import": "./dist/connector.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./environment": {
"types": "./dist/environment.d.ts",
"import": "./dist/environment.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.js"
}
},
"files": [
"dist",
"data/chrome-extension",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.js",
"test": "npm run build && node --test tests/*.test.mjs",
"pack-extension": "node scripts/pack-extension.js",
"test-install": "node scripts/test-install.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"desktop-automation",
"ui-automation",
"accessibility",
"electron",
"cdp",
"chrome-devtools-protocol",
"qt",
"gtk",
"wpf",
"flutter",
"java",
"office",
"ai-agent",
"app-control",
"framework-hook",
"uia",
"windows-automation",
"chrome-extension",
"browser-automation"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"ws": "^8.16.0"
},
"author": "myles1663",
"license": "BSL-1.1",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myles1663/UAB.git"
},
"bugs": {
"url": "https://github.com/myles1663/UAB/issues"
},
"homepage": "https://github.com/myles1663/UAB#readme",
"devDependencies": {
"@types/node": "^25.3.3",
"@types/ws": "^8.18.1",
"crx3": "^1.1.3",
"typescript": "^5.9.3"
}
}