-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 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
{
"name": "pplx-zero",
"version": "2.4.2",
"description": "Fast, minimal Perplexity AI CLI with local RAG. Stream answers, search your notes, analyze files. Zero bloat.",
"author": "kenzo",
"license": "MIT",
"type": "module",
"module": "src/index.ts",
"bin": {
"pplx": "bin/pplx.js"
},
"scripts": {
"build": "bun build src/index.ts --compile --outfile=pplx",
"dev": "bun run src/index.ts",
"test": "bun test"
},
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.8"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"src",
"bin",
"!src/**/*.test.ts",
"!**/AGENTS.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codewithkenzo/pplx-zero.git"
},
"bugs": {
"url": "https://github.com/codewithkenzo/pplx-zero/issues"
},
"homepage": "https://github.com/codewithkenzo/pplx-zero#readme",
"keywords": [
"perplexity",
"ai",
"search",
"cli",
"terminal",
"bun",
"llm",
"chatgpt",
"api",
"streaming",
"pdf",
"image",
"multimodal",
"research",
"assistant"
]
}