@mog-sdk/node 0.1.13 → 0.1.14
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/dist/index.cjs +762 -270
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +743 -266
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mog-sdk/node",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Headless spreadsheet engine for Node.js — full Excel-compatible compute, formulas, and file I/O",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"@mog-sdk/spreadsheet-contracts": "0.1.13"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"@mog-sdk/darwin-arm64": "0.1.
|
|
51
|
-
"@mog-sdk/darwin-x64": "0.1.
|
|
50
|
+
"@mog-sdk/darwin-arm64": "0.1.14",
|
|
51
|
+
"@mog-sdk/darwin-x64": "0.1.14"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/jest": "^30.0.0",
|
|
@@ -58,8 +58,7 @@
|
|
|
58
58
|
"typescript": "^5.7.0",
|
|
59
59
|
"@mog/kernel": "0.1.0",
|
|
60
60
|
"@mog/transport": "0.1.0",
|
|
61
|
-
"@mog/compute-core-napi": "0.0.1"
|
|
62
|
-
"@rust-bridge/client": "0.1.0"
|
|
61
|
+
"@mog/compute-core-napi": "0.0.1"
|
|
63
62
|
},
|
|
64
63
|
"scripts": {
|
|
65
64
|
"generate:api-spec": "tsx scripts/generate-api-spec.ts",
|
|
@@ -67,6 +66,7 @@
|
|
|
67
66
|
"build:dev": "tsup --no-dts",
|
|
68
67
|
"test": "jest --config jest.config.cjs",
|
|
69
68
|
"typecheck": "tsc --noEmit",
|
|
70
|
-
"verify-build": "node scripts/verify-build.mjs"
|
|
69
|
+
"verify-build": "node scripts/verify-build.mjs",
|
|
70
|
+
"smoke-test": "node scripts/smoke-test.mjs"
|
|
71
71
|
}
|
|
72
72
|
}
|