-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "@agentcomputer/torch",
"version": "0.1.5",
"description": "🔥 The self-healing AI scraping agent 🔥",
"license": "MIT",
"type": "module",
"files": [
"bin",
"dist",
"extensions",
"skills",
"scripts",
"SYSTEM.md",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AgentComputerAI/torch.git"
},
"homepage": "https://github.com/AgentComputerAI/torch",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"torch": "bin/torch.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"start": "node bin/torch.js"
},
"dependencies": {
"@aliou/pi-processes": "^0.7.1",
"@clack/prompts": "^1.2.0",
"@mariozechner/pi-coding-agent": "^0.65.0",
"cheerio": "^1.2.0",
"lz-string": "^1.5.0",
"puppeteer-core": "^24.0.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}