-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1.16 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
{
"name": "computer-use-local",
"version": "1.0.1",
"private": true,
"description": "Repository-level commands for the local Windows computer-use plugin.",
"type": "module",
"scripts": {
"build": "npm --prefix computer_use run build",
"build:all": "npm run build && npm run build:native",
"build:native": "node ./scripts/build-native-host.mjs",
"doctor:codex": "node ./scripts/install-plugin.mjs doctor codex",
"doctor:claude": "node ./scripts/install-plugin.mjs doctor claude",
"install:codex": "node ./scripts/install-plugin.mjs install codex",
"install:codex:compiled": "node ./scripts/install-plugin.mjs install codex --skip-build --skip-native",
"install:claude": "node ./scripts/install-plugin.mjs install claude",
"install:claude:compiled": "node ./scripts/install-plugin.mjs install claude --skip-build --skip-native",
"install:all": "npm run install:codex && npm run install:claude",
"install:all:compiled": "npm run install:codex:compiled && npm run install:claude:compiled",
"test": "npm --prefix computer_use test",
"typecheck": "npm --prefix computer_use run typecheck"
},
"engines": {
"node": ">=20"
}
}