@groundbrick/sms-service 1.1.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.
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@groundbrick/sms-service",
|
|
3
|
+
"version": "1.1.1",
|
|
4
|
+
"description": "Serviço de SMS plugável com suporte a múltiplos provedores (GatewayAPI, Twilio, etc)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"require": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc -p tsconfig.build.json",
|
|
22
|
+
"build:watch": "tsc -p tsconfig.build.json --watch",
|
|
23
|
+
"clean": "rm -rf dist",
|
|
24
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
25
|
+
"lint": "eslint src --ext .ts",
|
|
26
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
27
|
+
"prepare": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"sms",
|
|
31
|
+
"gatewayapi",
|
|
32
|
+
"twilio",
|
|
33
|
+
"notifications",
|
|
34
|
+
"messaging",
|
|
35
|
+
"typescript"
|
|
36
|
+
],
|
|
37
|
+
"author": "GroundBrick",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/groundbrick/sms-service.git"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/groundbrick/sms-service/issues"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://github.com/groundbrick/sms-service#readme",
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
52
|
+
"@types/node": "^20.19.9",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^6.17.0",
|
|
54
|
+
"@typescript-eslint/parser": "^6.17.0",
|
|
55
|
+
"eslint": "^8.56.0",
|
|
56
|
+
"prettier": "^3.1.1",
|
|
57
|
+
"typescript": "^5.3.3"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"jsonwebtoken": "^9.0.2"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=16.0.0"
|
|
64
|
+
}
|
|
65
|
+
}
|