signal-sdk 0.0.1

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.
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ /**
3
+ * Signal CLI SDK TypeScript Interfaces
4
+ *
5
+ * This file contains comprehensive type definitions for the Signal CLI SDK,
6
+ * which uses JSON-RPC communication with signal-cli for optimal performance.
7
+ *
8
+ * @author Signal SDK Team
9
+ * @version 2.0.0
10
+ */
11
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "signal-sdk",
3
+ "version": "0.0.1",
4
+ "description": "A comprehensive TypeScript SDK for Signal CLI with native JSON-RPC support, providing high-performance messaging, bot framework, and full signal-cli integration.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist/",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "test": "jest",
15
+ "postinstall": "node scripts/install.js",
16
+ "signal:connect": "node examples/sdk/00-device-linking.js",
17
+ "example:basic": "node examples/sdk/01-basic-usage.js",
18
+ "example:quick-start": "node examples/sdk/02-quick-start.js",
19
+ "example:group-management": "node examples/sdk/03-group-management.js",
20
+ "example:contact-management": "node examples/sdk/04-contact-management.js",
21
+ "example:file-handling": "node examples/sdk/05-file-handling.js",
22
+ "example:minimal-bot": "node examples/bot/01-minimal-bot.js",
23
+ "example:advanced-bot": "node examples/bot/02-advanced-bot.js"
24
+ },
25
+ "keywords": [
26
+ "signal",
27
+ "signal-cli",
28
+ "messaging",
29
+ "bot",
30
+ "typescript",
31
+ "json-rpc",
32
+ "sdk",
33
+ "automation"
34
+ ],
35
+ "author": "devbyben",
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/benoitpetit/signal-sdk.git"
40
+ },
41
+ "homepage": "https://github.com/benoitpetit/signal-sdk#readme",
42
+ "bugs": {
43
+ "url": "https://github.com/benoitpetit/signal-sdk/issues"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/jest": "^30.0.0",
50
+ "@types/node": "^24.0.10",
51
+ "@types/qrcode-terminal": "^0.12.2",
52
+ "@types/uuid": "^9.0.8",
53
+ "jest": "^30.0.4",
54
+ "ts-jest": "^29.4.0",
55
+ "typescript": "^5.8.3"
56
+ },
57
+ "dependencies": {
58
+ "axios": "^1.10.0",
59
+ "dotenv": "^16.4.5",
60
+ "duckduckgo-chat-interface": "^1.1.5",
61
+ "events": "^3.3.0",
62
+ "qrcode": "^1.5.3",
63
+ "qrcode-terminal": "^0.12.0",
64
+ "tar": "^7.4.3",
65
+ "uuid": "^9.0.1"
66
+ }
67
+ }