@bilig/headless 0.11.10 → 0.11.12
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 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -36,8 +36,13 @@ pnpm --filter @bilig/headless build
|
|
|
36
36
|
- Try the runnable examples:
|
|
37
37
|
[`examples/headless-workpaper`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper) and
|
|
38
38
|
[`npm run json-records`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-records-input).
|
|
39
|
+
- Run the
|
|
40
|
+
[serverless WorkPaper API example](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api)
|
|
41
|
+
when the workbook belongs behind an HTTP or agent-tool boundary.
|
|
39
42
|
- Build a small service from the
|
|
40
43
|
[Node service recipe](https://github.com/proompteng/bilig/blob/main/docs/node-service-workpaper-recipe.md).
|
|
44
|
+
- Put the same workbook boundary behind a
|
|
45
|
+
[serverless API route](https://github.com/proompteng/bilig/blob/main/docs/serverless-workpaper-api-route.md).
|
|
41
46
|
- Check the
|
|
42
47
|
[compatibility boundaries](https://github.com/proompteng/bilig/blob/main/docs/where-bilig-is-not-excel-compatible-yet.md)
|
|
43
48
|
before assuming full Excel parity.
|
|
@@ -130,8 +135,12 @@ Repository links:
|
|
|
130
135
|
[`examples/headless-workpaper`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper)
|
|
131
136
|
- JSON records input example:
|
|
132
137
|
[`npm run json-records`](https://github.com/proompteng/bilig/tree/main/examples/headless-workpaper#json-records-input)
|
|
138
|
+
- serverless API route example:
|
|
139
|
+
[`examples/serverless-workpaper-api`](https://github.com/proompteng/bilig/tree/main/examples/serverless-workpaper-api)
|
|
133
140
|
- Node service recipe:
|
|
134
141
|
[`docs/node-service-workpaper-recipe.md`](https://github.com/proompteng/bilig/blob/main/docs/node-service-workpaper-recipe.md)
|
|
142
|
+
- serverless API route recipe:
|
|
143
|
+
[`docs/serverless-workpaper-api-route.md`](https://github.com/proompteng/bilig/blob/main/docs/serverless-workpaper-api-route.md)
|
|
135
144
|
- CSV-shaped input recipe:
|
|
136
145
|
[`docs/csv-shaped-workpaper-input-recipe.md`](https://github.com/proompteng/bilig/blob/main/docs/csv-shaped-workpaper-input-recipe.md)
|
|
137
146
|
- unsupported formula troubleshooting:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilig/headless",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.12",
|
|
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.12",
|
|
70
|
+
"@bilig/formula": "0.11.12",
|
|
71
|
+
"@bilig/protocol": "0.11.12"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=24.0.0"
|