@mariozechner/pi-coding-agent is deprecated in favor of @earendil-works/pi-coding-agent (github.com/earendil-works/pi). Import Type from @earendil-works/pi-ai instead of @sinclair/typebox, which the new ecosystem replaces with plain typebox. Upgrading to 0.80.6 also resolves all 31 open Dependabot alerts from the old package's transitive dev dependencies.
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "pi-perplexity",
|
|
"version": "0.2.5",
|
|
"description": "Perplexity web search for pi — uses your Pro/Max subscription, no API credits needed",
|
|
"keywords": [
|
|
"pi-package",
|
|
"pi-extension"
|
|
],
|
|
"license": "MIT",
|
|
"author": "ivanrvpereira",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ivanrvpereira/pi-perplexity.git"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"pi": {
|
|
"extensions": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"peerDependencies": {
|
|
"@earendil-works/pi-tui": "*",
|
|
"@earendil-works/pi-ai": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@earendil-works/pi-coding-agent": "*",
|
|
"@earendil-works/pi-tui": "*",
|
|
"@earendil-works/pi-ai": "*",
|
|
"@types/node": "*",
|
|
"typescript": "*"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test:build": "node -e \"require('node:fs').rmSync('.tmp-test',{recursive:true,force:true})\" && tsc --project tsconfig.test.json",
|
|
"test": "npm run test:build && node --test --experimental-test-module-mocks \".tmp-test/test/**/*.test.js\""
|
|
},
|
|
"engines": {
|
|
"node": ">=18.14.1"
|
|
}
|
|
}
|