pi-cursor-sdk 0.1.3 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +63 -63
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.4 - 2026-05-07
4
+
5
+ ### Fixed
6
+
7
+ - Restores the GitHub install path to the normal source package layout after the npm-only bundled dependency patch.
8
+
3
9
  ## 0.1.3 - 2026-05-07
4
10
 
5
11
  ### Fixed
package/package.json CHANGED
@@ -1,65 +1,65 @@
1
1
  {
2
- "name": "pi-cursor-sdk",
3
- "version": "0.1.3",
4
- "description": "pi provider extension backed by @cursor/sdk local agents",
5
- "author": "Mitch Fultz (https://github.com/fitchmultz)",
6
- "license": "MIT",
7
- "keywords": [
8
- "pi-package",
9
- "pi",
10
- "pi-extension",
11
- "cursor",
12
- "cursor-sdk",
13
- "ai",
14
- "extension"
15
- ],
16
- "repository": {
17
- "type": "git",
18
- "url": "git+https://github.com/fitchmultz/pi-cursor-sdk.git"
19
- },
20
- "bugs": {
21
- "url": "https://github.com/fitchmultz/pi-cursor-sdk/issues"
22
- },
23
- "homepage": "https://github.com/fitchmultz/pi-cursor-sdk#readme",
24
- "files": [
25
- "src",
26
- "README.md",
27
- "docs/cursor-model-ux-spec.md",
28
- "LICENSE",
29
- "CHANGELOG.md"
30
- ],
31
- "type": "module",
32
- "engines": {
33
- "node": ">=18"
34
- },
35
- "scripts": {
36
- "typecheck": "tsc --noEmit",
37
- "test": "vitest run",
38
- "test:watch": "vitest"
39
- },
40
- "dependencies": {
41
- "@cursor/sdk": "^1.0.12"
42
- },
43
- "bundledDependencies": [
44
- "@cursor/sdk"
45
- ],
46
- "peerDependencies": {
47
- "@earendil-works/pi-ai": "*",
48
- "@earendil-works/pi-coding-agent": "*"
49
- },
50
- "devDependencies": {
51
- "@earendil-works/pi-ai": "^0.74.0",
52
- "@earendil-works/pi-coding-agent": "^0.74.0",
53
- "typescript": "^6.0.3",
54
- "vitest": "^4.1.5"
55
- },
56
- "pi": {
57
- "extensions": [
58
- "./src/index.ts"
59
- ]
60
- },
61
- "overrides": {
62
- "undici": "7.25.0",
63
- "sqlite3": "6.0.1"
64
- }
2
+ "name": "pi-cursor-sdk",
3
+ "version": "0.1.4",
4
+ "description": "pi provider extension backed by @cursor/sdk local agents",
5
+ "author": "Mitch Fultz (https://github.com/fitchmultz)",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "pi-package",
9
+ "pi",
10
+ "pi-extension",
11
+ "cursor",
12
+ "cursor-sdk",
13
+ "ai",
14
+ "extension"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/fitchmultz/pi-cursor-sdk.git"
19
+ },
20
+ "bugs": {
21
+ "url": "https://github.com/fitchmultz/pi-cursor-sdk/issues"
22
+ },
23
+ "homepage": "https://github.com/fitchmultz/pi-cursor-sdk#readme",
24
+ "files": [
25
+ "src",
26
+ "README.md",
27
+ "docs/cursor-model-ux-spec.md",
28
+ "LICENSE",
29
+ "CHANGELOG.md"
30
+ ],
31
+ "type": "module",
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
35
+ "scripts": {
36
+ "typecheck": "tsc --noEmit",
37
+ "test": "vitest run",
38
+ "test:watch": "vitest"
39
+ },
40
+ "dependencies": {
41
+ "@cursor/sdk": "^1.0.12"
42
+ },
43
+ "peerDependencies": {
44
+ "@earendil-works/pi-ai": "*",
45
+ "@earendil-works/pi-coding-agent": "*"
46
+ },
47
+ "devDependencies": {
48
+ "@earendil-works/pi-ai": "^0.74.0",
49
+ "@earendil-works/pi-coding-agent": "^0.74.0",
50
+ "typescript": "^6.0.3",
51
+ "vitest": "^4.1.5"
52
+ },
53
+ "pi": {
54
+ "extensions": [
55
+ "./src/index.ts"
56
+ ]
57
+ },
58
+ "overrides": {
59
+ "undici": "7.25.0",
60
+ "sqlite3": "6.0.1"
61
+ },
62
+ "bundledDependencies": [
63
+ "@cursor/sdk"
64
+ ]
65
65
  }