@spences10/pi-sqlite-tools 0.0.3 → 0.0.5
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 +16 -0
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @spences10/pi-sqlite-tools
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9bbacf1: Improve pi-context chunk retrieval UX with first chunk receipts,
|
|
8
|
+
aliases, and helpful miss messages.
|
|
9
|
+
|
|
10
|
+
## 0.0.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ca3d5e5: Harden redaction, document eval workflow, align Node
|
|
15
|
+
support, and clarify SQLite warning policy across packages.
|
|
16
|
+
- d8c5c5b: Replace hand-coded workspace dependency builds with pnpm
|
|
17
|
+
graph-backed self tasks and script consistency tests.
|
|
18
|
+
|
|
3
19
|
## 0.0.3
|
|
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.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
32
|
+
"@mariozechner/pi-coding-agent": "^0.73.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.6.0",
|
|
36
|
-
"typescript": "^6.0.
|
|
36
|
+
"typescript": "^6.0.3",
|
|
37
37
|
"vitest": "^4.1.5"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
40
|
+
"node": ">=24.15.0"
|
|
41
41
|
},
|
|
42
42
|
"pi": {
|
|
43
43
|
"extensions": [
|
|
@@ -45,8 +45,11 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
|
-
"build": "
|
|
49
|
-
"
|
|
50
|
-
"
|
|
48
|
+
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
49
|
+
"build:self": "tsc -p tsconfig.build.json",
|
|
50
|
+
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
51
|
+
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
52
|
+
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
53
|
+
"test:self": "vitest run"
|
|
51
54
|
}
|
|
52
55
|
}
|