@linxiraos/pi-wire 1.1.7 → 1.1.9
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/CHANGELOG.md +8 -0
- package/package.json +50 -56
- package/THIRD-PARTY-NOTICES.txt +0 -22909
- package/dist/types/index.d.ts +0 -456
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.1.9] - 2026-09-05
|
|
6
|
+
|
|
7
|
+
- v18.1.10 sync baseline; COLLAB_PROTO unchanged.
|
|
8
|
+
|
|
9
|
+
## [1.1.8] - 2026-09-04
|
|
10
|
+
|
|
11
|
+
- OMP sync v18.1.2–v18.1.5: Codex wire protocol updates aligned with upstream.
|
|
12
|
+
|
|
5
13
|
## [1.1.7] - 2026-09-01
|
|
6
14
|
|
|
7
15
|
- 版本线随 1.1.7 发布对齐(随本体 v18.0.11 同步与主题/网关更新),包内无独立变更。
|
package/package.json
CHANGED
|
@@ -1,58 +1,52 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"./*": {
|
|
53
|
-
"types": "./dist/types/*.d.ts",
|
|
54
|
-
"import": "./src/*.ts"
|
|
55
|
-
},
|
|
56
|
-
"./*.js": "./src/*.ts"
|
|
57
|
-
}
|
|
2
|
+
"type": "module",
|
|
3
|
+
"name": "@linxiraos/pi-wire",
|
|
4
|
+
"version": "1.1.9",
|
|
5
|
+
"description": "Shared wire protocol types for Oh My Pi packages",
|
|
6
|
+
"homepage": "https://linxira-os.github.io/zeta/",
|
|
7
|
+
"author": "Can Boluk",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/Linxira-OS/linxira-zeta.git",
|
|
12
|
+
"directory": "packages/wire"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/Linxira-OS/linxira-zeta/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"wire",
|
|
19
|
+
"protocol",
|
|
20
|
+
"types",
|
|
21
|
+
"collab"
|
|
22
|
+
],
|
|
23
|
+
"main": "./src/index.ts",
|
|
24
|
+
"types": "./src/index.ts",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"check": "tsgo -p tsconfig.json --noEmit",
|
|
27
|
+
"check:types": "tsgo -p tsconfig.json --noEmit",
|
|
28
|
+
"test": "bun test --parallel"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@types/bun": "^1.3.14"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"bun": ">=1.3.14"
|
|
35
|
+
},
|
|
36
|
+
"files": [
|
|
37
|
+
"src",
|
|
38
|
+
"README.md",
|
|
39
|
+
"CHANGELOG.md"
|
|
40
|
+
],
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"types": "./src/index.ts",
|
|
44
|
+
"import": "./src/index.ts"
|
|
45
|
+
},
|
|
46
|
+
"./*": {
|
|
47
|
+
"types": "./src/*.ts",
|
|
48
|
+
"import": "./src/*.ts"
|
|
49
|
+
},
|
|
50
|
+
"./*.js": "./src/*.ts"
|
|
51
|
+
}
|
|
58
52
|
}
|