pi-cloudflare 0.5.3 → 0.5.4
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 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -133,9 +133,13 @@ closed on scope). They complement; neither replaces the other.
|
|
|
133
133
|
|
|
134
134
|
```bash
|
|
135
135
|
npm install
|
|
136
|
-
npm test #
|
|
136
|
+
npm test # build + unit tests + performance gates (mocked, no network)
|
|
137
|
+
npm run perf # build/startup/request/package performance report
|
|
137
138
|
```
|
|
138
139
|
|
|
140
|
+
Performance budgets, measured surfaces, and the release validation path are documented in
|
|
141
|
+
[`docs/performance.md`](docs/performance.md).
|
|
142
|
+
|
|
139
143
|
## License
|
|
140
144
|
|
|
141
145
|
MIT for this package's own code (see LICENSE). Vendored skill content
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-cloudflare",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Pi extension proxying Cloudflare's official MCP servers (API, docs, bindings, builds, observability) with cf_ prefixed tools.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -43,9 +43,11 @@
|
|
|
43
43
|
"format:check": "oxfmt --check .",
|
|
44
44
|
"fmt": "oxfmt .",
|
|
45
45
|
"lint": "oxlint",
|
|
46
|
+
"perf": "node scripts/performance-audit.mjs",
|
|
47
|
+
"perf:check": "node scripts/performance-audit.mjs --check",
|
|
46
48
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
47
49
|
"prepublishOnly": "npm run build",
|
|
48
|
-
"test": "node --test test/config.test.mjs test/servers.test.mjs test/proxy.test.mjs test/oauth.test.mjs test/token-store.test.mjs test/auth-recovery.test.mjs",
|
|
50
|
+
"test": "node --test test/config.test.mjs test/servers.test.mjs test/proxy.test.mjs test/oauth.test.mjs test/token-store.test.mjs test/auth-recovery.test.mjs && npm run perf:check",
|
|
49
51
|
"pretest": "npm run build"
|
|
50
52
|
},
|
|
51
53
|
"dependencies": {
|