agent-ads-darwin-x64 0.1.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/agent-ads ADDED
Binary file
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const binaryPath: string;
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.binaryPath = void 0;
7
+ const node_path_1 = __importDefault(require("node:path"));
8
+ exports.binaryPath = node_path_1.default.join(__dirname, "bin", "agent-ads");
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "agent-ads-darwin-x64",
3
+ "version": "0.1.0",
4
+ "description": "Darwin x64 binary for the agent-ads CLI",
5
+ "author": "bengoism",
6
+ "os": [
7
+ "darwin"
8
+ ],
9
+ "cpu": [
10
+ "x64"
11
+ ],
12
+ "files": [
13
+ "bin",
14
+ "index.js",
15
+ "index.d.ts"
16
+ ],
17
+ "type": "commonjs",
18
+ "main": "index.js",
19
+ "types": "index.d.ts",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/bengoism/agent-ads.git"
24
+ },
25
+ "homepage": "https://github.com/bengoism/agent-ads",
26
+ "bugs": {
27
+ "url": "https://github.com/bengoism/agent-ads/issues"
28
+ },
29
+ "publishConfig": {
30
+ "provenance": true
31
+ }
32
+ }