apptvty 0.1.3 → 0.1.4

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/apptvty.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../dist/cli.js');
package/dist/cli.js CHANGED
@@ -1,4 +1,3 @@
1
- #!/usr/bin/env node
2
1
  "use strict";
3
2
 
4
3
  // src/cli.ts
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "apptvty",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Server-side analytics and AEO (Agent Experience Optimization) SDK for websites. Logs agentic traffic, exposes a structured query endpoint for AI agents, and serves relevant ads on agent queries.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
8
8
  "bin": {
9
- "apptvty": "dist/cli.js"
9
+ "apptvty": "bin/apptvty.js"
10
10
  },
11
11
  "exports": {
12
12
  ".": {
@@ -51,6 +51,7 @@
51
51
  ],
52
52
  "license": "MIT",
53
53
  "files": [
54
+ "bin",
54
55
  "dist",
55
56
  "README.md"
56
57
  ],