codescythe-darwin-arm64 0.4.13 → 0.5.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 +2 -0
- package/codescythe.darwin-arm64.node +0 -0
- package/index.js +7 -0
- package/package.json +4 -3
- package/index.ts +0 -5
package/README.md
CHANGED
|
@@ -5,3 +5,5 @@ Darwin arm64 native N-API package for Codescythe.
|
|
|
5
5
|
This package is loaded automatically by the public `codescythe` package on
|
|
6
6
|
`process.platform === "darwin"` and `process.arch === "arm64"`. It contains the
|
|
7
7
|
`codescythe.darwin-arm64.node` binding and is not intended to be used directly.
|
|
8
|
+
|
|
9
|
+
Documentation: https://perplexityai.github.io/codescythe/
|
|
Binary file
|
package/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';
|
|
2
|
+
const require = createRequire(import.meta.url);
|
|
3
|
+
const native = require('./codescythe.darwin-arm64.node');
|
|
4
|
+
export const analyze = native.analyze;
|
|
5
|
+
export const doctor = native.doctor;
|
|
6
|
+
export const fix = native.fix;
|
|
7
|
+
export default native;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codescythe-darwin-arm64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Codescythe native binding for Darwin arm64",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
12
12
|
},
|
|
13
|
-
"
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "./index.js",
|
|
14
15
|
"files": [
|
|
15
16
|
"codescythe.darwin-arm64.node",
|
|
16
|
-
"index.
|
|
17
|
+
"index.js",
|
|
17
18
|
"README.md"
|
|
18
19
|
],
|
|
19
20
|
"os": [
|