bilig-workpaper 0.164.3 → 0.164.4
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 +1 -1
- package/SKILL.md +1 -1
- package/package.json +18 -20
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# bilig-workpaper
|
|
2
2
|
|
|
3
|
-
Bilig WorkPaper runtime for Node.js services, tool integrations, and
|
|
3
|
+
Bilig WorkPaper runtime for Node.js services, tool integrations, and verified formula readback.
|
|
4
4
|
|
|
5
5
|
This is the unscoped npm entrypoint for the Bilig headless runtime. Use it when business logic is easiest to review as workbook cells and formulas, but the calculation needs to run in a backend service, queue worker, serverless route, test, or tool integration.
|
|
6
6
|
|
package/SKILL.md
CHANGED
package/package.json
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bilig-workpaper",
|
|
3
|
-
"version": "0.164.
|
|
3
|
+
"version": "0.164.4",
|
|
4
4
|
"description": "Bilig WorkPaper runtime for Node services: edit inputs, recalculate formulas, read outputs, and save JSON.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bilig",
|
|
7
7
|
"bilig-workpaper",
|
|
8
|
-
"excel",
|
|
9
|
-
"excel-calculation-engine",
|
|
10
|
-
"excel-formulas",
|
|
11
|
-
"exceljs",
|
|
12
8
|
"formula-engine",
|
|
13
9
|
"formula-recalculation",
|
|
14
|
-
"
|
|
15
|
-
"
|
|
10
|
+
"formula-workbook",
|
|
11
|
+
"mcp",
|
|
12
|
+
"mcp-server",
|
|
13
|
+
"mcp-tools",
|
|
14
|
+
"model-context-protocol",
|
|
16
15
|
"node",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"spreadsheet-formulas",
|
|
16
|
+
"node-services",
|
|
17
|
+
"server-side-formula-engine",
|
|
18
|
+
"server-side-formulas",
|
|
19
|
+
"tool-integration",
|
|
20
|
+
"typescript",
|
|
23
21
|
"workbook",
|
|
24
22
|
"workbook-api",
|
|
23
|
+
"workbook-formulas",
|
|
24
|
+
"workbook-runtime",
|
|
25
25
|
"workpaper",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"xlsx-formula",
|
|
29
|
-
"xlsx-recalculation"
|
|
26
|
+
"workpaper-json",
|
|
27
|
+
"workpaper-runtime"
|
|
30
28
|
],
|
|
31
29
|
"homepage": "https://proompteng.github.io/bilig/",
|
|
32
30
|
"bugs": {
|
|
@@ -86,9 +84,9 @@
|
|
|
86
84
|
"build": "pnpm --dir ../.. --filter @bilig/xlsx build && pnpm --dir ../.. --filter @bilig/headless build && rm -rf dist tsconfig.tsbuildinfo && tsc -p tsconfig.json"
|
|
87
85
|
},
|
|
88
86
|
"dependencies": {
|
|
89
|
-
"@bilig/headless": "0.164.
|
|
90
|
-
"@bilig/protocol": "0.164.
|
|
91
|
-
"@bilig/xlsx": "0.164.
|
|
87
|
+
"@bilig/headless": "0.164.4",
|
|
88
|
+
"@bilig/protocol": "0.164.4",
|
|
89
|
+
"@bilig/xlsx": "0.164.4"
|
|
92
90
|
},
|
|
93
91
|
"engines": {
|
|
94
92
|
"node": ">=22.0.0"
|