-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 836 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 836 Bytes
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
{
"name": "pro-cli",
"version": "0.1.0",
"description": "Agent native CLI for querying ChatGPT Pro and Deep Research through your own logged-in web session, managed from your terminal.",
"type": "module",
"homepage": "https://github.com/ratacat/pro-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ratacat/pro-cli.git"
},
"bugs": {
"url": "https://github.com/ratacat/pro-cli/issues"
},
"keywords": [
"chatgpt",
"chatgpt-pro",
"deep-research",
"cli",
"bun",
"typescript",
"agents",
"automation"
],
"bin": {
"pro-cli": "./src/cli.ts"
},
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"check": "bun test && tsc --noEmit"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"typescript": "^5.9.3"
}
}