pi-provider-qoder 0.1.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 (3) hide show
  1. package/README.md +85 -0
  2. package/dist/index.js +1530 -0
  3. package/package.json +43 -0
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "pi-provider-qoder",
3
+ "version": "0.1.0",
4
+ "description": "Pi extension for Qoder AI — with OAuth authentication, COSY signatures and WAF bypass",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "keywords": [
11
+ "pi-package",
12
+ "pi",
13
+ "qoder",
14
+ "ai",
15
+ "provider"
16
+ ],
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "./node_modules/esbuild/bin/esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --external:@earendil-works/pi-ai --external:@earendil-works/pi-coding-agent --external:@earendil-works/pi-tui",
23
+ "check": "node node_modules/typescript/bin/tsc --noEmit",
24
+ "lint": "node node_modules/@biomejs/biome/bin/biome check .",
25
+ "lint:fix": "node node_modules/@biomejs/biome/bin/biome check --write .",
26
+ "format": "node node_modules/@biomejs/biome/bin/biome format --write .",
27
+ "prepare": "npm run build",
28
+ "prepublishOnly": "npm run check && npm run build"
29
+ },
30
+ "pi": {
31
+ "extensions": [
32
+ "./dist/index.js"
33
+ ]
34
+ },
35
+ "devDependencies": {
36
+ "@biomejs/biome": "2.4.2",
37
+ "@earendil-works/pi-ai": "^0.75.5",
38
+ "@earendil-works/pi-coding-agent": "^0.75.5",
39
+ "@earendil-works/pi-tui": "^0.75.5",
40
+ "esbuild": "^0.25.0",
41
+ "typescript": "^5.7.0"
42
+ }
43
+ }