@spences10/pi-sqlite-tools 0.0.8 → 0.0.9
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 +7 -0
- package/package.json +6 -3
package/CHANGELOG.md
CHANGED
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.9",
|
|
4
4
|
"description": "Pi extension that reminds the model to prefer mcp-sqlite-tools for SQLite database work",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
+
"@earendil-works/pi-coding-agent": "^0.74.1",
|
|
33
34
|
"@types/node": "^25.8.0",
|
|
34
35
|
"typescript": "^6.0.3",
|
|
35
|
-
"vitest": "
|
|
36
|
+
"vitest": "4.1.5"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"@earendil-works/pi-coding-agent": "*"
|
|
@@ -52,6 +53,8 @@
|
|
|
52
53
|
"check": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run check:self",
|
|
53
54
|
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
54
55
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
55
|
-
"test:self": "vitest run"
|
|
56
|
+
"test:self": "vitest run",
|
|
57
|
+
"coverage:self": "vitest run --coverage",
|
|
58
|
+
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
56
59
|
}
|
|
57
60
|
}
|