pi-lilac-provider 1.9.13 → 1.9.15

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 (1) hide show
  1. package/package.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-lilac-provider",
3
- "version": "1.9.13",
3
+ "version": "1.9.15",
4
4
  "description": "Lilac provider extension for pi - Access Kimi K2.6, GLM 5.1, and Gemma 4 models through Lilac's OpenAI-compatible API on idle GPUs",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -14,6 +14,17 @@
14
14
  "README.md",
15
15
  "LICENSE"
16
16
  ],
17
+ "scripts": {
18
+ "clean": "echo 'nothing to clean'",
19
+ "build": "echo 'nothing to build'",
20
+ "check": "tsc --noEmit && knip --no-gitignore",
21
+ "test": "node scripts/test-discounts.ts && node scripts/test-preserved-thinking.ts && node scripts/test-model-overrides.ts && node scripts/test-flex.ts",
22
+ "test:discounts": "node scripts/test-discounts.ts",
23
+ "test:thinking": "node scripts/test-preserved-thinking.ts",
24
+ "test:overrides": "node scripts/test-model-overrides.ts",
25
+ "test:flex": "node scripts/test-flex.ts",
26
+ "update-models": "node scripts/update-models.js"
27
+ },
17
28
  "keywords": [
18
29
  "pi",
19
30
  "extension",
@@ -32,7 +43,7 @@
32
43
  "@earendil-works/pi-coding-agent": ">=0.74.0"
33
44
  },
34
45
  "devDependencies": {
35
- "@earendil-works/pi-coding-agent": "0.84.4",
46
+ "@earendil-works/pi-coding-agent": "0.85.1",
36
47
  "@types/node": "25.9.1",
37
48
  "knip": "6.14.1",
38
49
  "typescript": "6.0.3"
@@ -41,16 +52,5 @@
41
52
  "extensions": [
42
53
  "./index.ts"
43
54
  ]
44
- },
45
- "scripts": {
46
- "clean": "echo 'nothing to clean'",
47
- "build": "echo 'nothing to build'",
48
- "check": "tsc --noEmit && knip --no-gitignore",
49
- "test": "node scripts/test-discounts.ts && node scripts/test-preserved-thinking.ts && node scripts/test-model-overrides.ts && node scripts/test-flex.ts",
50
- "test:discounts": "node scripts/test-discounts.ts",
51
- "test:thinking": "node scripts/test-preserved-thinking.ts",
52
- "test:overrides": "node scripts/test-model-overrides.ts",
53
- "test:flex": "node scripts/test-flex.ts",
54
- "update-models": "node scripts/update-models.js"
55
55
  }
56
- }
56
+ }