budgetsms-client 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/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "budgetsms-client",
3
+ "version": "1.0.0",
4
+ "description": "Unofficial TypeScript/JavaScript client for BudgetSMS.net HTTP API with full type safety and dual ESM/CJS support",
5
+ "keywords": [
6
+ "budgetsms",
7
+ "sms",
8
+ "api",
9
+ "client",
10
+ "typescript",
11
+ "messaging"
12
+ ],
13
+ "homepage": "https://github.com/Frozenverse/budgetsms-client#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/Frozenverse/budgetsms-client/issues"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/Frozenverse/budgetsms-client.git"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Nick Leeman",
23
+ "type": "module",
24
+ "exports": {
25
+ ".": {
26
+ "import": {
27
+ "types": "./dist/index.d.mts",
28
+ "default": "./dist/index.mjs"
29
+ },
30
+ "require": {
31
+ "types": "./dist/index.d.ts",
32
+ "default": "./dist/index.js"
33
+ }
34
+ }
35
+ },
36
+ "main": "./dist/index.js",
37
+ "module": "./dist/index.mjs",
38
+ "types": "./dist/index.d.ts",
39
+ "files": [
40
+ "dist",
41
+ "README.md",
42
+ "LICENSE"
43
+ ],
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "dev": "tsup --watch",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "test:coverage": "vitest run --coverage",
50
+ "typecheck": "tsc --noEmit",
51
+ "prepublishOnly": "npm run typecheck && npm run test && npm run build"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.11.5",
55
+ "@vitest/coverage-v8": "^1.2.0",
56
+ "tsup": "^8.0.1",
57
+ "typescript": "^5.3.3",
58
+ "vitest": "^1.2.0"
59
+ },
60
+ "engines": {
61
+ "node": ">=18.0.0"
62
+ }
63
+ }