pplx-zero 1.1.4 → 1.1.6

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/package.json CHANGED
@@ -1,26 +1,32 @@
1
1
  {
2
2
  "name": "pplx-zero",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "Fast Perplexity AI search CLI with multimodal support - minimal setup, maximal results",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "pplx": "dist/cli.js"
8
+ "pplx": "dist/index.js"
9
9
  },
10
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",
11
+ "dev": "bun run src/cli/index.ts",
12
+ "dev:legacy": "bun run src/cli.ts",
13
+ "build": "rm -rf dist && bun build src/cli/index.ts --target node --outdir dist",
14
+ "build:legacy": "rm -rf dist && bun build src/cli.ts --target node --outdir dist",
15
+ "build:binary": "bun build --compile src/cli/index.ts --outfile=dist/pplx",
16
+ "build:binary:legacy": "bun build --compile src/cli.ts --outfile=dist/pplx-legacy",
14
17
  "test": "bun test",
15
18
  "test:watch": "bun test --watch",
16
19
  "typecheck": "bun tsc --noEmit",
17
20
  "lint": "bun run --bun eslint src/**/*.ts",
18
21
  "lint:fix": "bun run --bun eslint src/**/*.ts --fix",
19
22
  "clean": "rm -rf dist",
20
- "dev:debug": "bun --inspect src/cli.ts"
23
+ "dev:debug": "bun --inspect src/cli/index.ts",
24
+ "dev:debug:legacy": "bun --inspect src/cli.ts"
21
25
  },
22
26
  "dependencies": {
23
27
  "@perplexity-ai/perplexity_ai": "^0.11.0",
28
+ "abort-controller": "^3.0.0",
29
+ "commander": "^12.0.0",
24
30
  "dotenv": "^16.3.1",
25
31
  "zod": "^3.22.4"
26
32
  },