-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 964 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 964 Bytes
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
{
"name": "dsms",
"version": "1.0.0",
"description": "A simple library for Send Text SMS",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"prepare": "npm run build",
"lint": "tsc",
"test": "ts-node ./__test__/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dewan-ICT/dsms.git"
},
"keywords": [
"node",
"sms",
"api",
"otp"
],
"author": "Nahid Hasan <nahidhasan141400@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dewan-ICT/dsms/issues"
},
"homepage": "https://github.com//Dewan-ICT/dsms",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "^1.6.2"
}
}