@build-qube/takeoff-calculator 2.1.0 → 2.3.0
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 +4 -0
- package/browser.js +1 -1
- package/index.d.ts +351 -270
- package/index.js +754 -750
- package/package.json +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@build-qube/takeoff-calculator",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "Template project for writing node package with napi-rs",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -60,7 +60,6 @@
|
|
|
60
60
|
"@faker-js/faker": "^10.2.0",
|
|
61
61
|
"@napi-rs/cli": "^3.5.1",
|
|
62
62
|
"@napi-rs/wasm-runtime": "^1.1.0",
|
|
63
|
-
"@oxc-node/core": "^0.0.35",
|
|
64
63
|
"@taplo/cli": "^0.7.0",
|
|
65
64
|
"@tybys/wasm-util": "^0.10.0",
|
|
66
65
|
"chalk": "^5.6.2",
|
|
@@ -68,25 +67,27 @@
|
|
|
68
67
|
"npm-run-all2": "^8.0.4",
|
|
69
68
|
"prettier": "^3.6.2",
|
|
70
69
|
"tinybench": "^6.0.0",
|
|
70
|
+
"tsx": "^4.21.0",
|
|
71
71
|
"typescript": "^5.9.2",
|
|
72
72
|
"vitest": "^4.0.15"
|
|
73
73
|
},
|
|
74
74
|
"optionalDependencies": {
|
|
75
|
-
"@build-qube/takeoff-calculator-darwin-x64": "2.
|
|
76
|
-
"@build-qube/takeoff-calculator-darwin-arm64": "2.
|
|
77
|
-
"@build-qube/takeoff-calculator-linux-x64-gnu": "2.
|
|
78
|
-
"@build-qube/takeoff-calculator-win32-x64-msvc": "2.
|
|
79
|
-
"@build-qube/takeoff-calculator-linux-x64-musl": "2.
|
|
80
|
-
"@build-qube/takeoff-calculator-linux-arm64-gnu": "2.
|
|
81
|
-
"@build-qube/takeoff-calculator-linux-arm-gnueabihf": "2.
|
|
82
|
-
"@build-qube/takeoff-calculator-linux-arm64-musl": "2.
|
|
83
|
-
"@build-qube/takeoff-calculator-win32-arm64-msvc": "2.
|
|
84
|
-
"@build-qube/takeoff-calculator-wasm32-wasi": "2.
|
|
75
|
+
"@build-qube/takeoff-calculator-darwin-x64": "2.3.0",
|
|
76
|
+
"@build-qube/takeoff-calculator-darwin-arm64": "2.3.0",
|
|
77
|
+
"@build-qube/takeoff-calculator-linux-x64-gnu": "2.3.0",
|
|
78
|
+
"@build-qube/takeoff-calculator-win32-x64-msvc": "2.3.0",
|
|
79
|
+
"@build-qube/takeoff-calculator-linux-x64-musl": "2.3.0",
|
|
80
|
+
"@build-qube/takeoff-calculator-linux-arm64-gnu": "2.3.0",
|
|
81
|
+
"@build-qube/takeoff-calculator-linux-arm-gnueabihf": "2.3.0",
|
|
82
|
+
"@build-qube/takeoff-calculator-linux-arm64-musl": "2.3.0",
|
|
83
|
+
"@build-qube/takeoff-calculator-win32-arm64-msvc": "2.3.0",
|
|
84
|
+
"@build-qube/takeoff-calculator-wasm32-wasi": "2.3.0"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|
|
87
87
|
"artifacts": "napi artifacts",
|
|
88
|
+
"clean": "git clean -xdf node_modules .turbo .next target *.node *.wasm",
|
|
88
89
|
"create-npm-dirs": "napi create-npm-dirs",
|
|
89
|
-
"bench": "
|
|
90
|
+
"bench": "tsx --tsconfig tsconfig.bench.json benchmark/bench.mts",
|
|
90
91
|
"build": "napi build --platform --release",
|
|
91
92
|
"build:wasm": "napi build --platform --target wasm32-wasip1-threads --release",
|
|
92
93
|
"build:debug": "napi build --platform",
|