@linxiraos/pi-utils 1.0.4 → 1.0.5

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 (122) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/dist/types/abortable.d.ts +32 -0
  3. package/dist/types/acp/connection.d.ts +118 -0
  4. package/dist/types/acp/protocol.d.ts +526 -0
  5. package/dist/types/acp/schema.d.ts +41 -0
  6. package/dist/types/acp/stream.d.ts +8 -0
  7. package/dist/types/acp/transport.d.ts +81 -0
  8. package/dist/types/acp.d.ts +6 -0
  9. package/dist/types/async.d.ts +20 -0
  10. package/dist/types/binary.d.ts +17 -0
  11. package/dist/types/browsers.d.ts +68 -0
  12. package/dist/types/chalk.d.ts +125 -0
  13. package/dist/types/cli.d.ts +134 -0
  14. package/dist/types/color.d.ts +102 -0
  15. package/dist/types/dates.d.ts +7 -0
  16. package/dist/types/dirs.d.ts +292 -0
  17. package/dist/types/docx/converter.d.ts +46 -0
  18. package/dist/types/docx/xml.d.ts +26 -0
  19. package/dist/types/docx/zip.d.ts +6 -0
  20. package/dist/types/docx.d.ts +11 -0
  21. package/dist/types/dom/core.d.ts +431 -0
  22. package/dist/types/dom/parser.d.ts +7 -0
  23. package/dist/types/dom/selector.d.ts +5 -0
  24. package/dist/types/dom.d.ts +5 -0
  25. package/dist/types/env.d.ts +124 -0
  26. package/dist/types/fetch-retry.d.ts +96 -0
  27. package/dist/types/file-lock.d.ts +23 -0
  28. package/dist/types/format.d.ts +37 -0
  29. package/dist/types/frontmatter.d.ts +46 -0
  30. package/dist/types/fs-error.d.ts +31 -0
  31. package/dist/types/glob.d.ts +28 -0
  32. package/dist/types/headers.d.ts +34 -0
  33. package/dist/types/index.d.ts +39 -0
  34. package/dist/types/json-parse.d.ts +83 -0
  35. package/dist/types/json.d.ts +14 -0
  36. package/dist/types/logger/rotating-file.d.ts +18 -0
  37. package/dist/types/logger.d.ts +96 -0
  38. package/dist/types/loop-phase.d.ts +10 -0
  39. package/dist/types/lru.d.ts +46 -0
  40. package/dist/types/marked/core.d.ts +445 -0
  41. package/dist/types/marked.d.ts +2 -0
  42. package/dist/types/mermaid-ascii.d.ts +11 -0
  43. package/dist/types/mime.d.ts +29 -0
  44. package/dist/types/module-timer.d.ts +1 -0
  45. package/dist/types/path-tree.d.ts +76 -0
  46. package/dist/types/path.d.ts +2 -0
  47. package/dist/types/peek-file.d.ts +29 -0
  48. package/dist/types/postmortem.d.ts +104 -0
  49. package/dist/types/process-name.d.ts +7 -0
  50. package/dist/types/procmgr.d.ts +74 -0
  51. package/dist/types/prompt.d.ts +18 -0
  52. package/dist/types/ptree.d.ts +110 -0
  53. package/dist/types/readability/readability.d.ts +9 -0
  54. package/dist/types/readability/readerable.d.ts +10 -0
  55. package/dist/types/readability/types.d.ts +70 -0
  56. package/dist/types/readability.d.ts +4 -0
  57. package/dist/types/ring.d.ts +93 -0
  58. package/dist/types/runtime-install.d.ts +78 -0
  59. package/dist/types/sanitize-text.d.ts +29 -0
  60. package/dist/types/snowflake.d.ts +25 -0
  61. package/dist/types/stderr-guard.d.ts +22 -0
  62. package/dist/types/stream.d.ts +72 -0
  63. package/dist/types/tab-spacing.d.ts +24 -0
  64. package/dist/types/temp.d.ts +17 -0
  65. package/dist/types/template.d.ts +62 -0
  66. package/dist/types/timing-buffer.d.ts +22 -0
  67. package/dist/types/tls-fetch.d.ts +37 -0
  68. package/dist/types/turndown/gfm.d.ts +11 -0
  69. package/dist/types/turndown/html.d.ts +5 -0
  70. package/dist/types/turndown/service.d.ts +21 -0
  71. package/dist/types/turndown/types.d.ts +70 -0
  72. package/dist/types/turndown.d.ts +4 -0
  73. package/dist/types/type-guards.d.ts +5 -0
  74. package/dist/types/vendor/mermaid-ascii/ascii/ansi.d.ts +41 -0
  75. package/dist/types/vendor/mermaid-ascii/ascii/canvas.d.ts +89 -0
  76. package/dist/types/vendor/mermaid-ascii/ascii/class-diagram.d.ts +7 -0
  77. package/dist/types/vendor/mermaid-ascii/ascii/converter.d.ts +12 -0
  78. package/dist/types/vendor/mermaid-ascii/ascii/draw.d.ts +66 -0
  79. package/dist/types/vendor/mermaid-ascii/ascii/edge-bundling.d.ts +48 -0
  80. package/dist/types/vendor/mermaid-ascii/ascii/edge-routing.d.ts +43 -0
  81. package/dist/types/vendor/mermaid-ascii/ascii/er-diagram.d.ts +7 -0
  82. package/dist/types/vendor/mermaid-ascii/ascii/grid.d.ts +56 -0
  83. package/dist/types/vendor/mermaid-ascii/ascii/index.d.ts +65 -0
  84. package/dist/types/vendor/mermaid-ascii/ascii/multiline-utils.d.ts +27 -0
  85. package/dist/types/vendor/mermaid-ascii/ascii/pathfinder.d.ts +17 -0
  86. package/dist/types/vendor/mermaid-ascii/ascii/sequence.d.ts +7 -0
  87. package/dist/types/vendor/mermaid-ascii/ascii/shapes/circle.d.ts +11 -0
  88. package/dist/types/vendor/mermaid-ascii/ascii/shapes/corners.d.ts +34 -0
  89. package/dist/types/vendor/mermaid-ascii/ascii/shapes/diamond.d.ts +11 -0
  90. package/dist/types/vendor/mermaid-ascii/ascii/shapes/hexagon.d.ts +11 -0
  91. package/dist/types/vendor/mermaid-ascii/ascii/shapes/index.d.ts +26 -0
  92. package/dist/types/vendor/mermaid-ascii/ascii/shapes/rectangle.d.ts +31 -0
  93. package/dist/types/vendor/mermaid-ascii/ascii/shapes/rounded.d.ts +11 -0
  94. package/dist/types/vendor/mermaid-ascii/ascii/shapes/special.d.ts +59 -0
  95. package/dist/types/vendor/mermaid-ascii/ascii/shapes/stadium.d.ts +17 -0
  96. package/dist/types/vendor/mermaid-ascii/ascii/shapes/state.d.ts +30 -0
  97. package/dist/types/vendor/mermaid-ascii/ascii/shapes/types.d.ts +55 -0
  98. package/dist/types/vendor/mermaid-ascii/ascii/types.d.ts +206 -0
  99. package/dist/types/vendor/mermaid-ascii/ascii/validate.d.ts +51 -0
  100. package/dist/types/vendor/mermaid-ascii/ascii/xychart.d.ts +2 -0
  101. package/dist/types/vendor/mermaid-ascii/class/parser.d.ts +6 -0
  102. package/dist/types/vendor/mermaid-ascii/class/types.d.ts +102 -0
  103. package/dist/types/vendor/mermaid-ascii/er/parser.d.ts +6 -0
  104. package/dist/types/vendor/mermaid-ascii/er/types.d.ts +76 -0
  105. package/dist/types/vendor/mermaid-ascii/index.d.ts +1 -0
  106. package/dist/types/vendor/mermaid-ascii/multiline-utils.d.ts +9 -0
  107. package/dist/types/vendor/mermaid-ascii/parser.d.ts +7 -0
  108. package/dist/types/vendor/mermaid-ascii/sequence/parser.d.ts +6 -0
  109. package/dist/types/vendor/mermaid-ascii/sequence/types.d.ts +130 -0
  110. package/dist/types/vendor/mermaid-ascii/text-metrics.d.ts +23 -0
  111. package/dist/types/vendor/mermaid-ascii/types.d.ts +114 -0
  112. package/dist/types/vendor/mermaid-ascii/xychart/colors.d.ts +25 -0
  113. package/dist/types/vendor/mermaid-ascii/xychart/parser.d.ts +6 -0
  114. package/dist/types/vendor/mermaid-ascii/xychart/types.d.ts +145 -0
  115. package/dist/types/version.d.ts +18 -0
  116. package/dist/types/vterm/buffer.d.ts +99 -0
  117. package/dist/types/vterm/terminal.d.ts +44 -0
  118. package/dist/types/vterm.d.ts +8 -0
  119. package/dist/types/which.d.ts +37 -0
  120. package/dist/types/worker-host.d.ts +51 -0
  121. package/dist/types/xml.d.ts +31 -0
  122. package/package.json +59 -58
package/package.json CHANGED
@@ -1,58 +1,59 @@
1
- {
2
- "type": "module",
3
- "name": "@linxiraos/pi-utils",
4
- "version": "1.0.4",
5
- "description": "Shared utilities for pi packages",
6
- "homepage": "https://linxira-os.github.io",
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/utils"
13
- },
14
- "bugs": {
15
- "url": "https://github.com/can1357/oh-my-pi/issues"
16
- },
17
- "keywords": [
18
- "utilities",
19
- "cli",
20
- "logging",
21
- "streams"
22
- ],
23
- "main": "./src/index.ts",
24
- "types": "./src/index.ts",
25
- "scripts": {
26
- "check": "biome check . && bun run check:types",
27
- "check:types": "tsgo -p tsconfig.json --noEmit",
28
- "lint": "biome lint .",
29
- "test": "bun test --parallel",
30
- "fix": "biome check --write --unsafe .",
31
- "fmt": "biome format --write ."
32
- },
33
- "dependencies": {
34
- "@linxiraos/pi-natives": "1.0.2"
35
- },
36
- "devDependencies": {
37
- "@types/bun": "^1.3.14"
38
- },
39
- "engines": {
40
- "bun": ">=1.3.14"
41
- },
42
- "files": [
43
- "src",
44
- "README.md",
45
- "CHANGELOG.md"
46
- ],
47
- "exports": {
48
- ".": {
49
- "types": "./src/index.ts",
50
- "import": "./src/index.ts"
51
- },
52
- "./*": {
53
- "types": "./src/*.ts",
54
- "import": "./src/*.ts"
55
- },
56
- "./*.js": "./src/*.ts"
57
- }
58
- }
1
+ {
2
+ "type": "module",
3
+ "name": "@linxiraos/pi-utils",
4
+ "version": "1.0.5",
5
+ "description": "Shared utilities for pi packages",
6
+ "homepage": "https://linxira-os.github.io",
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/utils"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/can1357/oh-my-pi/issues"
16
+ },
17
+ "keywords": [
18
+ "utilities",
19
+ "cli",
20
+ "logging",
21
+ "streams"
22
+ ],
23
+ "main": "./src/index.ts",
24
+ "types": "./dist/types/index.d.ts",
25
+ "scripts": {
26
+ "check": "biome check . && bun run check:types",
27
+ "check:types": "tsgo -p tsconfig.json --noEmit",
28
+ "lint": "biome lint .",
29
+ "test": "bun test --parallel",
30
+ "fix": "biome check --write --unsafe .",
31
+ "fmt": "biome format --write ."
32
+ },
33
+ "dependencies": {
34
+ "@linxiraos/pi-natives": "1.0.2"
35
+ },
36
+ "devDependencies": {
37
+ "@types/bun": "^1.3.14"
38
+ },
39
+ "engines": {
40
+ "bun": ">=1.3.14"
41
+ },
42
+ "files": [
43
+ "src",
44
+ "README.md",
45
+ "CHANGELOG.md",
46
+ "dist/types"
47
+ ],
48
+ "exports": {
49
+ ".": {
50
+ "types": "./dist/types/index.d.ts",
51
+ "import": "./src/index.ts"
52
+ },
53
+ "./*": {
54
+ "types": "./dist/types/*.d.ts",
55
+ "import": "./src/*.ts"
56
+ },
57
+ "./*.js": "./src/*.ts"
58
+ }
59
+ }