@lll9p/pi-anyrouter 0.3.2

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 +22 -0
  2. package/README.md +251 -0
  3. package/index.ts +1221 -0
  4. package/package.json +53 -0
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@lll9p/pi-anyrouter",
3
+ "version": "0.3.2",
4
+ "private": false,
5
+ "type": "module",
6
+ "description": "Unofficial pi provider extension for AnyRouter Claude Code and Codex Responses Lite routes",
7
+ "keywords": [
8
+ "pi",
9
+ "pi-package",
10
+ "pi-extension",
11
+ "anyrouter",
12
+ "claude",
13
+ "claude-code",
14
+ "codex",
15
+ "openai"
16
+ ],
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/lll9p/pi-anyrouter.git"
21
+ },
22
+ "homepage": "https://github.com/lll9p/pi-anyrouter#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/lll9p/pi-anyrouter/issues"
25
+ },
26
+ "files": [
27
+ "index.ts",
28
+ "README.md"
29
+ ],
30
+ "pi": {
31
+ "extensions": [
32
+ "./index.ts"
33
+ ]
34
+ },
35
+ "scripts": {
36
+ "pack:dry-run": "npm pack --dry-run"
37
+ },
38
+ "dependencies": {
39
+ "undici": "^8.3.0"
40
+ },
41
+ "peerDependencies": {
42
+ "@earendil-works/pi-ai": "*",
43
+ "@earendil-works/pi-coding-agent": "*"
44
+ },
45
+ "peerDependenciesMeta": {
46
+ "@earendil-works/pi-ai": {
47
+ "optional": true
48
+ },
49
+ "@earendil-works/pi-coding-agent": {
50
+ "optional": true
51
+ }
52
+ }
53
+ }