@lgtm-hq/lintro-darwin-arm64 0.69.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/bin/lintro +0 -0
- package/index.js +13 -0
- package/package.json +29 -0
package/bin/lintro
ADDED
|
Binary file
|
package/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Exports the absolute path to the platform-specific lintro binary.
|
|
5
|
+
*
|
|
6
|
+
* The `bin/lintro` file is populated by the publish workflow from the
|
|
7
|
+
* Nuitka-compiled artifact for this platform. Consumers should not depend
|
|
8
|
+
* on this package directly; install the `lintro` meta-package instead.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const path = require('path');
|
|
12
|
+
|
|
13
|
+
module.exports.path = path.join(__dirname, 'bin', 'lintro');
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lgtm-hq/lintro-darwin-arm64",
|
|
3
|
+
"version": "0.69.0",
|
|
4
|
+
"description": "macOS Apple Silicon binary for lintro. Installed automatically by the `lintro` package.",
|
|
5
|
+
"homepage": "https://github.com/lgtm-hq/py-lintro#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/lgtm-hq/py-lintro/issues"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/lgtm-hq/py-lintro.git",
|
|
13
|
+
"directory": "npm/darwin-arm64"
|
|
14
|
+
},
|
|
15
|
+
"os": [
|
|
16
|
+
"darwin"
|
|
17
|
+
],
|
|
18
|
+
"cpu": [
|
|
19
|
+
"arm64"
|
|
20
|
+
],
|
|
21
|
+
"main": "index.js",
|
|
22
|
+
"files": [
|
|
23
|
+
"bin/lintro",
|
|
24
|
+
"index.js"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=18"
|
|
28
|
+
}
|
|
29
|
+
}
|