-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.19 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
{
"name": "@thegreataxios/prawl",
"version": "0.1.9",
"description": "CLI for AI Agents to use an Internet Browser",
"type": "module",
"bin": {
"prawl": "dist/cli.mjs"
},
"main": "./dist/cli.mjs",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsdown",
"compile": "bun build --compile --minify --sourcemap ./dist/cli.mjs --outfile prawl",
"dev": "bun run --silent src/cli.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run build",
"publish": "npm publish"
},
"keywords": [
"browser",
"automation",
"ai",
"agent",
"webview",
"bun",
"headless",
"snapshot",
"accessibility"
],
"author": "Sawyer Cutler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thegreataxios/prawl.git"
},
"homepage": "https://github.com/thegreataxios/prawl#readme",
"bugs": "https://github.com/thegreataxios/prawl/issues",
"dependencies": {
"incur": "^0.3.25",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.12",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"engines": {
"bun": ">=1.3.12"
}
}