pplx-zero 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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +228 -0
  3. package/dist/cli.js +6988 -0
  4. package/package.json +62 -0
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "pplx-zero",
3
+ "version": "1.0.0",
4
+ "description": "PPLX-Zero: Minimal, fast Perplexity AI search CLI - zero configuration, zero compromises",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "pplx": "dist/cli.js"
9
+ },
10
+ "scripts": {
11
+ "dev": "bun run src/cli.ts",
12
+ "build": "rm -rf dist && bun build src/cli.ts --target node --outdir dist",
13
+ "build:binary": "bun build --compile src/cli.ts --outfile=dist/pplx",
14
+ "test": "bun test",
15
+ "test:watch": "bun test --watch",
16
+ "typecheck": "bun tsc --noEmit",
17
+ "lint": "bun run --bun eslint src/**/*.ts",
18
+ "lint:fix": "bun run --bun eslint src/**/*.ts --fix",
19
+ "clean": "rm -rf dist",
20
+ "dev:debug": "bun --inspect src/cli.ts"
21
+ },
22
+ "dependencies": {
23
+ "@perplexity-ai/perplexity_ai": "^0.11.0",
24
+ "dotenv": "^16.3.1",
25
+ "zod": "^3.22.4"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^20.0.0",
29
+ "typescript": "^5.0.0",
30
+ "bun-types": "latest",
31
+ "@typescript-eslint/eslint-plugin": "^6.0.0",
32
+ "@typescript-eslint/parser": "^6.0.0",
33
+ "eslint": "^8.0.0"
34
+ },
35
+ "engines": {
36
+ "bun": ">=1.0.0"
37
+ },
38
+ "keywords": [
39
+ "pplx-zero",
40
+ "perplexity",
41
+ "search",
42
+ "ai",
43
+ "cli",
44
+ "command-line",
45
+ "tool",
46
+ "typescript",
47
+ "bun",
48
+ "api",
49
+ "minimal",
50
+ "fast",
51
+ "productivity",
52
+ "zero-config"
53
+ ],
54
+ "author": "Kenzo",
55
+ "license": "MIT",
56
+ "files": [
57
+ "dist",
58
+ "README.md",
59
+ "LICENSE",
60
+ "package.json"
61
+ ]
62
+ }