@liziy/session-queue 0.2.0 → 0.2.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/package.json +42 -29
package/package.json
CHANGED
|
@@ -1,29 +1,42 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@liziy/session-queue",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "pi extension: linear session queue with file-change rollback, snapshot GC, dirty check, and Session Tree auto-sync (i18n: zh/en)",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pi-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@liziy/session-queue",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "pi extension: linear session queue with file-change rollback, snapshot GC, dirty check, and Session Tree auto-sync (i18n: zh/en)",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-extension",
|
|
7
|
+
"pi-package",
|
|
8
|
+
"session",
|
|
9
|
+
"queue",
|
|
10
|
+
"rollback",
|
|
11
|
+
"file-snapshot",
|
|
12
|
+
"checkpoint",
|
|
13
|
+
"linear-history",
|
|
14
|
+
"memory",
|
|
15
|
+
"i18n"
|
|
16
|
+
],
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"main": "index.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"index.ts",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"pi": {
|
|
24
|
+
"extensions": [
|
|
25
|
+
"./index.ts"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
30
|
+
"@earendil-works/pi-tui": "*"
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/yu-d1/pi-extensions.git",
|
|
35
|
+
"directory": "packages/session-queue"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/yu-d1/pi-extensions/tree/main/packages/session-queue#readme",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/yu-d1/pi-extensions/issues"
|
|
40
|
+
},
|
|
41
|
+
"author": "liziy"
|
|
42
|
+
}
|