@zzs-fun/current-question 0.1.0 → 0.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.
Files changed (1) hide show
  1. package/package.json +16 -7
package/package.json CHANGED
@@ -1,25 +1,34 @@
1
1
  {
2
2
  "name": "@zzs-fun/current-question",
3
- "version": "0.1.0",
4
- "description": "pi 扩展:在编辑器上方置顶显示最近 N 条用户问题,支持切换/展开/复制/带上下文的外部编辑器回复",
5
- "keywords": ["pi-package"],
3
+ "version": "0.1.1",
4
+ "description": "pi extension that pins your recent questions above the editor — navigate, expand, copy, and reply with context.",
5
+ "keywords": [
6
+ "pi-package"
7
+ ],
6
8
  "author": "jenson",
7
9
  "license": "MIT",
8
10
  "repository": {
9
11
  "type": "git",
10
- "url": "https://github.com/wszzs110/current-question.git"
12
+ "url": "git+https://github.com/wszzs110/current-question.git"
11
13
  },
12
14
  "homepage": "https://github.com/wszzs110/current-question#readme",
13
15
  "bugs": {
14
16
  "url": "https://github.com/wszzs110/current-question/issues"
15
17
  },
16
- "files": ["index.ts", "README.md", "README.zh-CN.md", "LICENSE"],
18
+ "files": [
19
+ "index.ts",
20
+ "README.md",
21
+ "README.zh-CN.md",
22
+ "LICENSE"
23
+ ],
17
24
  "pi": {
18
- "extensions": ["./index.ts"]
25
+ "extensions": [
26
+ "./index.ts"
27
+ ]
19
28
  },
20
29
  "peerDependencies": {
21
30
  "@earendil-works/pi-coding-agent": "*",
22
31
  "@earendil-works/pi-tui": "*",
23
32
  "typebox": "*"
24
33
  }
25
- }
34
+ }