@bilig/headless 0.10.57 → 0.10.58
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/README.md +9 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -72,22 +72,25 @@ Supported scope:
|
|
|
72
72
|
|
|
73
73
|
## Install
|
|
74
74
|
|
|
75
|
-
Published package:
|
|
75
|
+
Published WorkPaper package:
|
|
76
76
|
|
|
77
77
|
```sh
|
|
78
78
|
pnpm add @bilig/headless
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
XLSX ingestion and export:
|
|
82
82
|
|
|
83
83
|
```sh
|
|
84
|
-
|
|
84
|
+
git clone https://github.com/proompteng/bilig.git
|
|
85
|
+
cd bilig
|
|
86
|
+
pnpm install
|
|
87
|
+
pnpm --filter @bilig/excel-import build
|
|
85
88
|
```
|
|
86
89
|
|
|
87
90
|
`@bilig/excel-import` lives in this monorepo, but its npm package name is still
|
|
88
|
-
being provisioned. Until that package is published on npm, use
|
|
89
|
-
|
|
90
|
-
|
|
91
|
+
being provisioned. Until that package is published on npm, use a repository
|
|
92
|
+
checkout for XLSX import/export work instead of adding `@bilig/excel-import` as
|
|
93
|
+
an external dependency.
|
|
91
94
|
|
|
92
95
|
Repository:
|
|
93
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.58",
|
|
4
4
|
"description": "Headless spreadsheet engine and WorkPaper workbook facade for Node services, coding agents, and HyperFormula-style workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"build": "rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@bilig/core": "0.10.
|
|
70
|
-
"@bilig/formula": "0.10.
|
|
71
|
-
"@bilig/protocol": "0.10.
|
|
69
|
+
"@bilig/core": "0.10.58",
|
|
70
|
+
"@bilig/formula": "0.10.58",
|
|
71
|
+
"@bilig/protocol": "0.10.58"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|