-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.53 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
{
"name": "agent-aget",
"version": "0.6.1",
"description": "CloakBrowser-backed browser workflow CLI for LLM agents",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/izzzzzi/agent-aget.git"
},
"keywords": [
"browser",
"cloakbrowser",
"stealth",
"llm",
"agent",
"cli",
"cdp"
],
"bin": {
"aget": "bin/aget.js"
},
"scripts": {
"test": "node scripts/smoke-test.js && node scripts/browser-install.test.js",
"postinstall": "node scripts/install.js",
"check": "test -z \"$(gofmt -l .)\" && go vet ./... && go test ./... && npm run smoke && npm run test:browser-install && npm pack --dry-run",
"smoke": "node scripts/smoke-test.js",
"test:browser-install": "node scripts/browser-install.test.js",
"check:skills": "node scripts/check-skill-copies.js",
"release:contract": "node scripts/release-contract-test.js",
"pack:dry": "npm pack --dry-run"
},
"engines": {
"node": ">=18"
},
"files": [
"bin/aget.js",
"scripts/install.js",
"scripts/platform.js",
"scripts/browser-install.js",
"scripts/check-skill-copies.js",
"browser-manifest.json",
"README.md",
"README.en.md",
"AGENT_INSTRUCTIONS.md",
"AGENTS.md",
"SYSTEM_PROMPT_snippet.md",
"LICENSE",
"skills/aget/SKILL.md",
"skills/aget/references/",
".claude-plugin/",
".codex-plugin/",
".cursor/rules/aget.mdc",
".clinerules/aget.md",
".opencode/",
"pi-extension/",
".github/copilot-instructions.md"
]
}