@bilig/headless 0.11.16 → 0.11.18
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 +7 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -35,7 +35,12 @@ pnpm --filter @bilig/headless build
|
|
|
35
35
|
smoke test.
|
|
36
36
|
- Try the runnable examples:
|
|
37
37
|
[`examples/headless-workpaper`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper) and
|
|
38
|
-
[`npm run json-records`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-records-input)
|
|
38
|
+
[`npm run json-records`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-records-input)
|
|
39
|
+
for in-process records, or
|
|
40
|
+
[`npm run json-file`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-file-input)
|
|
41
|
+
for records already saved on disk, or
|
|
42
|
+
[`npm run http-json-summary`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#http-json-summary)
|
|
43
|
+
for a no-framework Node HTTP boundary.
|
|
39
44
|
- Run the
|
|
40
45
|
[serverless WorkPaper API example](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api)
|
|
41
46
|
when the workbook belongs behind an HTTP or agent-tool boundary.
|
|
@@ -259,6 +264,7 @@ restores the workbook, and verifies the final result.
|
|
|
259
264
|
cd examples/headless-workpaper
|
|
260
265
|
npm install
|
|
261
266
|
npm start
|
|
267
|
+
npm run http-json-summary
|
|
262
268
|
npm run agent:tool-call
|
|
263
269
|
```
|
|
264
270
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.18",
|
|
4
4
|
"description": "Headless spreadsheet engine for Node.js formulas, workbook JSON persistence, and service-side spreadsheet automation.",
|
|
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.11.
|
|
70
|
-
"@bilig/formula": "0.11.
|
|
71
|
-
"@bilig/protocol": "0.11.
|
|
69
|
+
"@bilig/core": "0.11.18",
|
|
70
|
+
"@bilig/formula": "0.11.18",
|
|
71
|
+
"@bilig/protocol": "0.11.18"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|