-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2 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
{
"name": "@agent-sh/computer-use-linux",
"version": "0.5.0",
"description": "Linux desktop-control MCP server: AT-SPI accessibility trees, Wayland/X11 input, screenshots, and compositor window targeting.",
"license": "MIT",
"type": "commonjs",
"homepage": "https://github.com/agent-sh/computer-use-linux#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/agent-sh/computer-use-linux.git"
},
"bugs": {
"url": "https://github.com/agent-sh/computer-use-linux/issues"
},
"keywords": [
"mcp",
"computer-use",
"linux",
"wayland",
"accessibility",
"hermes-agent",
"codex",
"pi-package"
],
"os": [
"linux"
],
"cpu": [
"x64",
"arm64"
],
"bin": {
"computer-use-linux": "npm/bin/computer-use-linux.js"
},
"files": [
"LICENSE",
"README.md",
"skills/computer-use-linux/SKILL.md",
"skills/computer-use-linux/references/",
"npm/README.md",
"npm/bin/computer-use-linux.js",
"npm/install.js",
"pi/extension/index.ts",
"pi/extension/generated-tools.ts",
"pi/extension/mcp-client.bundle.cjs",
"pi/extension/THIRD_PARTY_NOTICES.txt"
],
"pi": {
"extensions": ["./pi/extension/index.ts"],
"skills": ["./skills/computer-use-linux/SKILL.md"]
},
"scripts": {
"build:pi": "npm run build --prefix pi",
"check:pi-bundle": "npm run build:check --prefix pi",
"postinstall": "node npm/install.js",
"pack:check": "node scripts/check_npm_package.mjs",
"test:pi": "npm test --prefix pi",
"typecheck:pi": "npm run typecheck --prefix pi",
"test:wrapper": "node npm/bin/computer-use-linux.js --help"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"typebox": {
"optional": true
}
}
}