@esslassi/electron-printer 0.0.9 → 0.0.10

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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@esslassi/electron-printer",
3
3
  "description": "Node.js and Electron bindings",
4
- "version": "0.0.9",
4
+ "version": "0.0.10",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
7
7
  "private": false,
8
8
  "scripts": {
9
- "install": "node-gyp rebuild",
9
+ "install": "node-gyp-build",
10
+ "prebuild": "prebuildify --napi --strip --name node.napi",
10
11
  "prebuild:master": "prebuild-install || node-gyp rebuild",
11
12
  "clean:lib": "rimraf lib/ && rimraf tsconfig-build.tsbuildinfo",
12
13
  "build": "npm run clean:lib && tsc -p tsconfig-build.json && node-gyp build",
@@ -43,6 +44,11 @@
43
44
  "binding.gyp",
44
45
  "src"
45
46
  ],
47
+ "overrides": {
48
+ "prebuild": {
49
+ "node-abi": "^4.25.0"
50
+ }
51
+ },
46
52
  "dependencies": {
47
53
  "dotenv": "17.2.3",
48
54
  "node-addon-api": "8.5.0",
@@ -60,6 +66,7 @@
60
66
  "@types/bindings": "^1.5.5",
61
67
  "@types/node": "22.12.0",
62
68
  "prebuild-install": "7.1.3",
69
+ "prebuildify": "^6.0.1",
63
70
  "rimraf": "^6.0.1",
64
71
  "typescript": "5.7.3"
65
72
  },