-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (63 loc) · 1.35 KB
/
package.json
File metadata and controls
64 lines (63 loc) · 1.35 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": "grok-api-ts",
"version": "1.1.2",
"description": "TypeScript client for interacting with Grok AI with automated login and cookie management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"clean": "rimraf dist",
"example": "ts-node examples/test-streaming.ts",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"No tests yet\""
},
"keywords": [
"grok",
"ai",
"api",
"client",
"x.ai",
"chatbot",
"automation"
],
"author": "TKat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tkattkat/grok-api-client.git"
},
"bugs": {
"url": "https://github.com/tkattkat/grok-api-client/issues"
},
"homepage": "https://github.com/tkattkat/grok-api-client#readme",
"dependencies": {
"got-scraping": "^3.2.15",
"patchright": "^1.50.1",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/tough-cookie": "^4.0.5",
"puppeteer": "^24.3.0",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"chrome-launcher": "^0.15.2"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}