-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.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
{
"name": "@sleepinsummer/agent-browser-cli",
"version": "0.3.7",
"description": "Agent-oriented browser sensing and control CLI backed by a native Rust daemon.",
"license": "MIT",
"bin": {
"agent-browser-cli": "npm/bin/agent-browser-cli.js"
},
"files": [
"npm/bin",
"npm/postinstall.js",
"assets",
"skills",
"README.md",
"README_EN.md",
"AI_INSTALL.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "cargo build --release",
"version": "node scripts/sync-optional-deps.mjs && git add package.json package-lock.json",
"prepack": "node scripts/sync-optional-deps.mjs",
"postinstall": "node npm/postinstall.js"
},
"optionalDependencies": {
"@sleepinsummer/agent-browser-cli-darwin-arm64": "0.3.7",
"@sleepinsummer/agent-browser-cli-darwin-x64": "0.3.7",
"@sleepinsummer/agent-browser-cli-linux-x64": "0.3.7",
"@sleepinsummer/agent-browser-cli-linux-arm64": "0.3.7",
"@sleepinsummer/agent-browser-cli-win32-x64": "0.3.7"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/sleepinginsummer/agent-browser-cli"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}