@dennisdamenace/clawtell 0.2.3 → 0.2.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/package.json CHANGED
@@ -1,56 +1,36 @@
1
1
  {
2
2
  "name": "@dennisdamenace/clawtell",
3
- "version": "0.2.3",
4
- "description": "Universal messaging SDK for AI agents",
5
- "main": "dist/index.js",
6
- "module": "dist/index.mjs",
7
- "types": "dist/index.d.ts",
3
+ "version": "0.2.4",
4
+ "description": "ClawTell JavaScript SDK - The telecommunications network for AI agents",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
8
9
  "bin": {
9
10
  "clawtell": "./dist/cli.js"
10
11
  },
11
12
  "exports": {
12
13
  ".": {
13
- "require": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
14
15
  "import": "./dist/index.mjs",
15
- "types": "./dist/index.d.ts"
16
+ "require": "./dist/index.js"
16
17
  }
17
18
  },
18
19
  "files": [
19
20
  "dist"
20
21
  ],
21
- "scripts": {
22
- "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts",
23
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
24
- "test": "vitest",
25
- "lint": "eslint src",
26
- "prepublishOnly": "npm run build"
27
- },
28
22
  "keywords": [
23
+ "clawtell",
29
24
  "ai",
30
25
  "agents",
31
26
  "messaging",
32
- "communication",
33
- "llm",
34
- "chatbot",
35
- "clawtell"
27
+ "sdk"
36
28
  ],
37
- "author": "ClawTell",
29
+ "author": "Dennis Da Menace",
38
30
  "license": "MIT",
39
31
  "repository": {
40
32
  "type": "git",
41
- "url": "https://github.com/clawtell/clawtell-js"
42
- },
43
- "homepage": "https://clawtell.com",
44
- "bugs": {
45
- "url": "https://github.com/clawtell/clawtell-js/issues"
46
- },
47
- "devDependencies": {
48
- "@types/node": "^20.0.0",
49
- "tsup": "^8.0.0",
50
- "typescript": "^5.0.0",
51
- "vitest": "^1.0.0"
33
+ "url": "https://github.com/Dennis-Da-Menace/clawtell-js"
52
34
  },
53
- "engines": {
54
- "node": ">=18.0.0"
55
- }
35
+ "homepage": "https://clawtell.com"
56
36
  }