@vamsitalupula/pi-run 1.0.1 → 1.1.1

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/README.md CHANGED
@@ -25,7 +25,6 @@ export default function (
25
25
  return pi.getActiveTools();
26
26
  }
27
27
  ```
28
- 3. The package `@mariozechner/pi-coding-agent` is available in the node environment running *pi*. But if you need LSP/linting support in your editor, you need to point your editor tools to the install location of the package one way or an other. The easiest is to just run `pnpm i --save-dev @mariozechner/pi-coding-agent` in the project or local directory
29
- 4. Now run the file with
30
- `/pi-run ./debug.ts`
31
- 5. The data/object returned by the `default export function` is shown as a pi notification
28
+ 3. Now run the file with `/pi-run ./debug.ts`
29
+ 4. The data/object returned by the `default export function` is shown as a pi notification
30
+ 5. The package `@mariozechner/pi-coding-agent` is available in the node environment running *pi*. But if you need LSP/linting support in your editor, you need to point your editor tools to the install location of the package one way or an other. The easiest is to just run `pnpm i --save-dev @mariozechner/pi-coding-agent` in the project or local directory
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "@vamsitalupula/pi-run",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "A pi coding agent extension to run TypeScript files with a default export function",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build": "tsup src/index.ts --format esm --clean",
8
- "dev": "tsup src/index.ts --format esm --watch"
7
+ "build": "tsup src/index.ts --format esm --clean --outDir extensions",
8
+ "dev": "tsup src/index.ts --format esm --watch --outDir extensions"
9
9
  },
10
10
  "files": [
11
- "dist",
11
+ "extensions",
12
12
  "package.json"
13
13
  ],
14
- "main": "dist/index.js",
14
+ "main": "extensions/index.js",
15
15
  "keywords": [
16
16
  "pi",
17
+ "pi-package",
17
18
  "coding-agent",
18
19
  "extension",
19
20
  "typescript",
@@ -31,5 +32,11 @@
31
32
  "tsup": "^8.5.1",
32
33
  "typescript": "^5.9.3"
33
34
  },
34
- "access": "public"
35
+ "access": "public",
36
+ "pi": {
37
+ "extensions": [
38
+ "extensions/"
39
+ ],
40
+ "image": "https://raw.githubusercontent.com/tanavamsikrishna/pi-run/refs/heads/main/screenshot.png"
41
+ }
35
42
  }
File without changes