-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 998 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "android-sms-gateway",
"license": "Apache-2.0",
"description": "A JS/TS client library for sending and managing SMS messages via the SMS Gateway for Android™",
"repository": {
"type": "git",
"url": "git+https://github.com/android-sms-gateway/client-ts.git"
},
"homepage": "https://sms-gate.app",
"keywords": [
"bun",
"sms",
"android",
"sms-gateway",
"api",
"client",
"typescript"
],
"author": {
"name": "Aleksandr Soloshenko",
"email": "[email protected]",
"url": "https://github.com/capcom6"
},
"bugs": {
"url": "https://github.com/android-sms-gateway/client-ts/issues"
},
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"bun-plugin-dts": "^0.3.0",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun run build.mjs",
"prepublishOnly": "bun run build"
}
}