node-abi 3.70.0 → 3.72.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 +7 -0
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-abi",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.72.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
|
}
|