pplx-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +182 -0
- package/dist/index.js +5842 -0
- package/package.json +52 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pplx-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A powerful CLI tool for the Perplexity AI API - search the web and chat with AI from your terminal",
|
|
5
|
+
"author": "Adarsh Dubey",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/inclinedadarsh/pplx-cli.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/inclinedadarsh/pplx-cli/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/inclinedadarsh/pplx-cli#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"perplexity",
|
|
17
|
+
"ai",
|
|
18
|
+
"cli",
|
|
19
|
+
"search",
|
|
20
|
+
"chat",
|
|
21
|
+
"terminal",
|
|
22
|
+
"api"
|
|
23
|
+
],
|
|
24
|
+
"type": "module",
|
|
25
|
+
"main": "dist/index.js",
|
|
26
|
+
"bin": {
|
|
27
|
+
"pplx": "./dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
34
|
+
"dev": "bun run src/index.ts",
|
|
35
|
+
"prepublishOnly": "bun run build"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/bun": "latest",
|
|
39
|
+
"@types/node": "^25.1.0"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"typescript": "^5"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"chalk": "^5.6.2",
|
|
46
|
+
"commander": "^14.0.2",
|
|
47
|
+
"ora": "^9.1.0"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18"
|
|
51
|
+
}
|
|
52
|
+
}
|