@spences10/pi-sqlite-tools 0.0.6 → 0.0.8

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 +16 -0
  2. package/package.json +9 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @spences10/pi-sqlite-tools
2
2
 
3
+ ## 0.0.8
4
+
5
+ ### Patch Changes
6
+
7
+ - bea8707: Add package-specific homepage links so Pi gallery pages
8
+ point to each package README.
9
+ - 3e91b90: Add shared package gallery preview image to all Pi package
10
+ manifests.
11
+
12
+ ## 0.0.7
13
+
14
+ ### Patch Changes
15
+
16
+ - 8944bf8: Move Pi core runtime packages to peer dependencies for
17
+ safer external extension installs.
18
+
3
19
  ## 0.0.6
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spences10/pi-sqlite-tools",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
5
5
  "keywords": [
6
6
  "database",
@@ -9,6 +9,7 @@
9
9
  "pi-package",
10
10
  "sqlite"
11
11
  ],
12
+ "homepage": "https://github.com/spences10/my-pi/tree/main/packages/pi-sqlite-tools#readme",
12
13
  "license": "MIT",
13
14
  "author": "Scott Spence <me@scottspence.com>",
14
15
  "repository": {
@@ -28,13 +29,13 @@
28
29
  "default": "./dist/index.js"
29
30
  }
30
31
  },
31
- "dependencies": {
32
- "@earendil-works/pi-coding-agent": "^0.74.0"
33
- },
34
32
  "devDependencies": {
35
- "@types/node": "^25.6.1",
33
+ "@types/node": "^25.8.0",
36
34
  "typescript": "^6.0.3",
37
- "vitest": "^4.1.5"
35
+ "vitest": "^4.1.6"
36
+ },
37
+ "peerDependencies": {
38
+ "@earendil-works/pi-coding-agent": "*"
38
39
  },
39
40
  "engines": {
40
41
  "node": ">=24.15.0"
@@ -42,7 +43,8 @@
42
43
  "pi": {
43
44
  "extensions": [
44
45
  "./dist/index.js"
45
- ]
46
+ ],
47
+ "image": "https://raw.githubusercontent.com/spences10/my-pi/main/assets/pi-package-preview.png"
46
48
  },
47
49
  "scripts": {
48
50
  "build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",