@spences10/pi-svelte-guardrails 0.0.4 → 0.0.6
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/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spences10/pi-svelte-guardrails",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Pi extension that blocks discouraged Svelte patterns before agents write them",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-guardrails",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"svelte",
|
|
10
10
|
"svelte5"
|
|
11
11
|
],
|
|
12
|
+
"homepage": "https://github.com/spences10/my-pi/tree/main/packages/pi-svelte-guardrails#readme",
|
|
12
13
|
"license": "MIT",
|
|
13
14
|
"author": "Scott Spence <me@scottspence.com>",
|
|
14
15
|
"repository": {
|
|
@@ -40,7 +41,8 @@
|
|
|
40
41
|
"pi": {
|
|
41
42
|
"extensions": [
|
|
42
43
|
"./dist/index.js"
|
|
43
|
-
]
|
|
44
|
+
],
|
|
45
|
+
"image": "https://raw.githubusercontent.com/spences10/my-pi/main/assets/pi-package-preview.png"
|
|
44
46
|
},
|
|
45
47
|
"scripts": {
|
|
46
48
|
"build": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run build:self",
|
|
@@ -49,6 +51,8 @@
|
|
|
49
51
|
"check:self": "tsc --noEmit -p tsconfig.json",
|
|
50
52
|
"test": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run test:self",
|
|
51
53
|
"test:self": "vitest run",
|
|
52
|
-
"test:watch": "vitest"
|
|
54
|
+
"test:watch": "vitest",
|
|
55
|
+
"coverage:self": "vitest run --coverage",
|
|
56
|
+
"coverage": "pnpm --filter \"$npm_package_name^...\" run build:self && pnpm run coverage:self"
|
|
53
57
|
}
|
|
54
58
|
}
|