node-abi 3.75.0 → 3.77.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/abi_registry.json +23 -2
- package/package.json +5 -2
package/abi_registry.json
CHANGED
|
@@ -116,7 +116,14 @@
|
|
|
116
116
|
"2026-10-20"
|
|
117
117
|
],
|
|
118
118
|
"future": false,
|
|
119
|
-
"abi": "
|
|
119
|
+
"abi": "137"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"runtime": "node",
|
|
123
|
+
"target": "25.0.0",
|
|
124
|
+
"lts": false,
|
|
125
|
+
"future": true,
|
|
126
|
+
"abi": "138"
|
|
120
127
|
},
|
|
121
128
|
{
|
|
122
129
|
"abi": "70",
|
|
@@ -379,9 +386,23 @@
|
|
|
379
386
|
},
|
|
380
387
|
{
|
|
381
388
|
"abi": "136",
|
|
382
|
-
"future":
|
|
389
|
+
"future": false,
|
|
383
390
|
"lts": false,
|
|
384
391
|
"runtime": "electron",
|
|
385
392
|
"target": "37.0.0-alpha.1"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"abi": "139",
|
|
396
|
+
"future": false,
|
|
397
|
+
"lts": false,
|
|
398
|
+
"runtime": "electron",
|
|
399
|
+
"target": "38.0.0-alpha.1"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"abi": "140",
|
|
403
|
+
"future": true,
|
|
404
|
+
"lts": false,
|
|
405
|
+
"runtime": "electron",
|
|
406
|
+
"target": "39.0.0-alpha.1"
|
|
386
407
|
}
|
|
387
408
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-abi",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.77.0",
|
|
4
4
|
"description": "Get the Node ABI for a given target and runtime, and vice versa.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/electron/node-abi#readme",
|
|
30
30
|
"devDependencies": {
|
|
31
|
+
"@semantic-release/npm": "13.0.0-alpha.15",
|
|
32
|
+
"semantic-release": "^24.2.7",
|
|
31
33
|
"tape": "^5.3.1"
|
|
32
34
|
},
|
|
33
35
|
"dependencies": {
|
|
@@ -38,5 +40,6 @@
|
|
|
38
40
|
},
|
|
39
41
|
"publishConfig": {
|
|
40
42
|
"provenance": true
|
|
41
|
-
}
|
|
43
|
+
},
|
|
44
|
+
"packageManager": "yarn@1.22.22"
|
|
42
45
|
}
|