pi-critique 0.1.2 → 0.1.3

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 (3) hide show
  1. package/index.ts +1 -1
  2. package/package.json +10 -2
  3. package/tsconfig.json +12 -0
package/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI, ExtensionCommandContext, SessionEntry } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI, ExtensionCommandContext, SessionEntry } from "@earendil-works/pi-coding-agent";
2
2
  import { readFileSync, statSync } from "node:fs";
3
3
  import { basename, extname, isAbsolute, join, resolve } from "node:path";
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-critique",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Structured AI critique for writing and code. Pairs well with annotated-reply and markdown-preview but works standalone.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -17,6 +17,14 @@
17
17
  ]
18
18
  },
19
19
  "peerDependencies": {
20
- "@mariozechner/pi-coding-agent": "*"
20
+ "@earendil-works/pi-coding-agent": "*"
21
+ },
22
+ "scripts": {
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^24.3.0",
27
+ "typescript": "^5.7.3",
28
+ "@earendil-works/pi-coding-agent": "^0.74.0"
21
29
  }
22
30
  }
package/tsconfig.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "strict": true,
7
+ "skipLibCheck": true,
8
+ "noEmit": true,
9
+ "types": ["node"]
10
+ },
11
+ "include": ["index.ts"]
12
+ }