@rahularya01/pi-cursor 1.4.8 → 1.4.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/CHANGELOG.md +15 -0
- package/dist/h2-bridge.mjs +32 -5
- package/dist/index.js +20 -20
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rahularya01/pi-cursor",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.10",
|
|
4
4
|
"description": "Native Cursor provider for Pi Coding Agent (OAuth + Connect/protobuf streamSimple)",
|
|
5
5
|
"author": "Rahul Arya",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"type": "module",
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=22.19.0"
|
|
19
|
+
},
|
|
17
20
|
"keywords": [
|
|
18
21
|
"pi-package",
|
|
19
22
|
"pi-extension",
|
|
@@ -41,13 +44,14 @@
|
|
|
41
44
|
"proto:sync": "tsx scripts/proto-sync.ts",
|
|
42
45
|
"proto:check": "tsx scripts/proto-check.ts",
|
|
43
46
|
"test": "vitest run",
|
|
47
|
+
"test:coverage": "vitest run --coverage",
|
|
44
48
|
"test:watch": "vitest",
|
|
45
49
|
"test:legacy": "tsx scripts/test-model-routing.ts && tsx scripts/test-thinking-levels.ts && tsx scripts/test-usage.ts && tsx scripts/test-context-mode-normalize.ts && tsx scripts/test-cli-auth.ts",
|
|
46
50
|
"smoke:auth": "node --import tsx scripts/smoke-auth.mjs",
|
|
47
51
|
"smoke:models": "node --import tsx scripts/smoke-models.mjs",
|
|
48
52
|
"smoke:stream": "node --import tsx scripts/smoke-stream.mjs",
|
|
49
53
|
"smoke:wire": "node --import tsx scripts/smoke-wire.mjs",
|
|
50
|
-
"check": "npm run typecheck && npm run lint && npm run format:check && npm run security-check && npm run proto:check && npm test"
|
|
54
|
+
"check": "npm run typecheck && npm run lint && npm run format:check && npm run security-check && npm run proto:check && npm test && npm run test:legacy"
|
|
51
55
|
},
|
|
52
56
|
"pi": {
|
|
53
57
|
"extensions": [
|
|
@@ -74,6 +78,7 @@
|
|
|
74
78
|
"tsx": "^4.23.1",
|
|
75
79
|
"typescript": "^6.0.3",
|
|
76
80
|
"typescript-eslint": "^8.64.0",
|
|
81
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
77
82
|
"vitest": "^3.2.4"
|
|
78
83
|
}
|
|
79
84
|
}
|