@monotykamary/pi-tps 1.3.8 → 1.3.10
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/README.md +5 -5
- package/package.json +20 -16
package/README.md
CHANGED
|
@@ -240,19 +240,19 @@ Dev tooling (vitest, typescript, hooks) stays in the git repo only — use `pnpm
|
|
|
240
240
|
|
|
241
241
|
```bash
|
|
242
242
|
# Install dev dependencies (repo checkout only)
|
|
243
|
-
|
|
243
|
+
bun install
|
|
244
244
|
|
|
245
245
|
# Run tests
|
|
246
|
-
|
|
246
|
+
bun run test
|
|
247
247
|
|
|
248
248
|
# Run tests with coverage
|
|
249
|
-
|
|
249
|
+
bun run test:coverage
|
|
250
250
|
|
|
251
251
|
# Type check
|
|
252
|
-
|
|
252
|
+
bun run typecheck
|
|
253
253
|
|
|
254
254
|
# Verify published tarball contents (should be ~3 runtime files)
|
|
255
|
-
|
|
255
|
+
bun run pack:check
|
|
256
256
|
```
|
|
257
257
|
|
|
258
258
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monotykamary/pi-tps",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.10",
|
|
4
4
|
"description": "Tokens-per-second tracker for pi — see your LLM generation speed after every agent turn",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -11,6 +11,15 @@
|
|
|
11
11
|
"README.md",
|
|
12
12
|
"extensions/pi-tps/index.ts"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:watch": "vitest",
|
|
17
|
+
"test:coverage": "vitest run --coverage",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"lint:dead": "knip --no-gitignore",
|
|
20
|
+
"pack:check": "npm pack --dry-run",
|
|
21
|
+
"prepare": "simple-git-hooks 2>/dev/null || true"
|
|
22
|
+
},
|
|
14
23
|
"pi": {
|
|
15
24
|
"extensions": [
|
|
16
25
|
"./extensions"
|
|
@@ -29,8 +38,8 @@
|
|
|
29
38
|
"devDependencies": {
|
|
30
39
|
"@commitlint/cli": "21.0.1",
|
|
31
40
|
"@commitlint/config-conventional": "21.0.1",
|
|
32
|
-
"@earendil-works/pi-ai": "0.
|
|
33
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
41
|
+
"@earendil-works/pi-ai": "0.85.0",
|
|
42
|
+
"@earendil-works/pi-coding-agent": "0.85.0",
|
|
34
43
|
"@types/node": "25.9.1",
|
|
35
44
|
"@vitest/coverage-v8": "4.1.7",
|
|
36
45
|
"knip": "6.14.1",
|
|
@@ -45,17 +54,12 @@
|
|
|
45
54
|
"@earendil-works/pi-coding-agent": ">=0.74.0"
|
|
46
55
|
},
|
|
47
56
|
"overrides": {
|
|
48
|
-
"brace-expansion": "5.0.
|
|
49
|
-
"fast-xml-builder": "1.
|
|
50
|
-
"protobufjs": "
|
|
51
|
-
"ws": "8.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"test:watch": "vitest",
|
|
56
|
-
"test:coverage": "vitest run --coverage",
|
|
57
|
-
"typecheck": "tsc --noEmit",
|
|
58
|
-
"lint:dead": "knip --no-gitignore",
|
|
59
|
-
"pack:check": "npm pack --dry-run"
|
|
57
|
+
"brace-expansion": "5.0.9",
|
|
58
|
+
"fast-xml-builder": "1.3.0",
|
|
59
|
+
"protobufjs": "7.6.5",
|
|
60
|
+
"ws": "8.21.1",
|
|
61
|
+
"fast-uri": "3.1.5",
|
|
62
|
+
"js-yaml": "4.3.1",
|
|
63
|
+
"postcss": "8.5.25"
|
|
60
64
|
}
|
|
61
|
-
}
|
|
65
|
+
}
|