node-abi 3.71.0 → 3.73.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 -2
- package/abi_registry.json +8 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Node.js ABI
|
|
2
2
|
|
|
3
|
-
[](https://github.com/electron/node-abi/actions/workflows/test.yml)
|
|
4
4
|
[](https://github.com/electron/node-abi/actions/workflows/update-abi.yml)
|
|
5
5
|
[](https://snyk.io/test/github/electron/node-abi)
|
|
6
6
|
[](https://npmjs.org/package/node-abi)
|
|
@@ -8,11 +8,13 @@
|
|
|
8
8
|
Get the Node ABI (application binary interface) for a given target and runtime, and vice versa.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
|
-
|
|
11
|
+
|
|
12
|
+
```shell
|
|
12
13
|
npm install node-abi
|
|
13
14
|
```
|
|
14
15
|
|
|
15
16
|
## Usage
|
|
17
|
+
|
|
16
18
|
```javascript
|
|
17
19
|
const nodeAbi = require('node-abi')
|
|
18
20
|
|
package/abi_registry.json
CHANGED
|
@@ -348,9 +348,16 @@
|
|
|
348
348
|
},
|
|
349
349
|
{
|
|
350
350
|
"abi": "132",
|
|
351
|
-
"future":
|
|
351
|
+
"future": false,
|
|
352
352
|
"lts": false,
|
|
353
353
|
"runtime": "electron",
|
|
354
354
|
"target": "34.0.0-alpha.1"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"abi": "133",
|
|
358
|
+
"future": true,
|
|
359
|
+
"lts": false,
|
|
360
|
+
"runtime": "electron",
|
|
361
|
+
"target": "35.0.0-alpha.1"
|
|
355
362
|
}
|
|
356
363
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-abi",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.73.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,7 +28,6 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/electron/node-abi#readme",
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"got": "^11.8.2",
|
|
32
31
|
"tape": "^5.3.1"
|
|
33
32
|
},
|
|
34
33
|
"dependencies": {
|
|
@@ -36,5 +35,8 @@
|
|
|
36
35
|
},
|
|
37
36
|
"engines": {
|
|
38
37
|
"node": ">=10"
|
|
38
|
+
},
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"provenance": true
|
|
39
41
|
}
|
|
40
42
|
}
|