-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 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
59
60
61
62
63
64
{
"name": "thejoker",
"version": "1.0.0",
"description": "The Joker - An agentic terminal powered by LM Studio for web scraping and autonomous coding",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf dist logs",
"prepare": "npm run build"
},
"keywords": [
"terminal",
"agent",
"llm",
"lm-studio",
"web-scraping",
"code-generation",
"ai"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"axios": "^1.13.2",
"chalk": "^5.6.2",
"cheerio": "^1.1.2",
"chokidar": "^5.0.0",
"dotenv": "^17.2.3",
"inquirer": "^13.0.1",
"ora": "^9.0.0",
"puppeteer": "^24.31.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"readline-sync": "^1.4.10",
"uuid": "^13.0.0",
"winston": "^3.18.3"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/chokidar": "^1.7.5",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"prettier": "^3.7.3",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}