aov-agent 1.0.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 ADDED
@@ -0,0 +1 @@
1
+ `
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ export default function getAgent() {
2
+ return {
3
+ name: "Agent",
4
+ description: "Agent",
5
+ version: "1.0.0"
6
+ };
7
+ }
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "aov-agent",
3
+ "version": "1.0.0",
4
+ "description": "AOV Agent",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "babel src --out-dir dist --extensions \".ts\"",
9
+ "build:watch": "babel src --out-dir dist --extensions \".ts\" --watch"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://gitlab.com/avada/aov-ai-agent.git"
14
+ },
15
+ "keywords": [
16
+ "AOV",
17
+ "Agent"
18
+ ],
19
+ "author": "AOV.ai",
20
+ "license": "ISC",
21
+ "bugs": {
22
+ "url": "https://gitlab.com/avada/aov-ai-agent/issues"
23
+ },
24
+ "homepage": "https://gitlab.com/avada/aov-ai-agent#readme",
25
+ "devDependencies": {
26
+ "@babel/cli": "^7.28.3",
27
+ "@babel/core": "^7.28.5",
28
+ "@babel/preset-env": "^7.28.5",
29
+ "@babel/preset-typescript": "^7.28.5"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "types"
34
+ ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ }
38
+ }
@@ -0,0 +1,5 @@
1
+ export declare function getAgent(): {
2
+ name: string;
3
+ description: string;
4
+ version: string;
5
+ };