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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Node.js ABI
2
2
 
3
- [![Build Status](https://circleci.com/gh/electron/node-abi/tree/main.svg?style=shield)](https://circleci.com/gh/electron/node-abi/tree/main)
3
+ [![Build Status](https://github.com/electron/node-abi/actions/workflows/test.yml/badge.svg)](https://github.com/electron/node-abi/actions/workflows/test.yml)
4
4
  [![Auto-update ABI JSON file](https://github.com/electron/node-abi/actions/workflows/update-abi.yml/badge.svg)](https://github.com/electron/node-abi/actions/workflows/update-abi.yml)
5
5
  [![Snyk badge](https://snyk.io/test/github/electron/node-abi/badge.svg)](https://snyk.io/test/github/electron/node-abi)
6
6
  [![npm version](http://img.shields.io/npm/v/node-abi.svg)](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": true,
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.71.0",
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
  }