pi-spark 0.10.2 → 0.10.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +8 -17
package/README.md CHANGED
@@ -24,10 +24,10 @@ Install from npm:
24
24
  pi install npm:pi-spark
25
25
  ```
26
26
 
27
- Install from git:
27
+ For local development from this monorepo:
28
28
 
29
29
  ```bash
30
- pi install git:github.com/zlliang/pi-spark
30
+ pi install /path/to/pi-packages/packages/pi-spark
31
31
  ```
32
32
 
33
33
  ## Configure
@@ -117,4 +117,4 @@ Project trust is an [input-loading guard](https://pi.dev/docs/latest/security#pr
117
117
 
118
118
  ## Other pi packages
119
119
 
120
- - [pi-credits](https://github.com/zlliang/pi-credits): shows the active provider's credit balance or rate-limit usage as a footer status.
120
+ - [pi-credits](https://github.com/zlliang/pi-packages/tree/main/packages/pi-credits): shows the active provider's credit balance or rate-limit usage as a footer status.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-spark",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "A small, opinionated collection of pi extensions",
5
5
  "keywords": [
6
6
  "pi-coding-agent",
@@ -8,24 +8,21 @@
8
8
  ],
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "git+https://github.com/zlliang/pi-spark.git"
11
+ "url": "git+https://github.com/zlliang/pi-packages.git",
12
+ "directory": "packages/pi-spark"
12
13
  },
13
14
  "license": "MIT",
14
15
  "type": "module",
15
16
  "files": [
16
17
  "extensions",
17
18
  "assets",
18
- "README.md",
19
- "LICENSE"
19
+ "README.md"
20
20
  ],
21
21
  "pi": {
22
22
  "extensions": [
23
23
  "./extensions"
24
24
  ],
25
- "image": "https://raw.githubusercontent.com/zlliang/pi-spark/main/assets/cover.png"
26
- },
27
- "scripts": {
28
- "typecheck": "tsc --noEmit"
25
+ "image": "https://raw.githubusercontent.com/zlliang/pi-packages/main/packages/pi-spark/assets/cover.png"
29
26
  },
30
27
  "dependencies": {
31
28
  "liqe": "^3.8.7",
@@ -39,13 +36,7 @@
39
36
  "@earendil-works/pi-tui": "*",
40
37
  "typebox": "*"
41
38
  },
42
- "devDependencies": {
43
- "@earendil-works/pi-agent-core": "*",
44
- "@earendil-works/pi-ai": "*",
45
- "@earendil-works/pi-coding-agent": "*",
46
- "@earendil-works/pi-tui": "*",
47
- "@types/node": "*",
48
- "typebox": "*",
49
- "typescript": "^6.0.3"
39
+ "scripts": {
40
+ "typecheck": "pnpm --dir ../.. typecheck"
50
41
  }
51
- }
42
+ }