-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.98 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "sms-typescript",
"version": "2.0.2",
"description": "Official TypeScript SDK for SMS.ir API - Send SMS, verification codes, and bulk messages",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('lib', {recursive: true, force: true})\"",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:ui": "vitest --ui --config vitest.integration.config.ts",
"prepare": "npm run build",
"preversion": "npm run build",
"version": "git add -A lib",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IPeCompany/SmsPanelV2.TypeScript.git"
},
"keywords": [
"sms",
"sms.ir",
"typescript",
"sdk",
"api",
"iran",
"verification",
"otp",
"messaging"
],
"author": "hadi-zare-irani",
"license": "MIT",
"bugs": {
"url": "https://github.com/IPeCompany/SmsPanelV2.TypeScript/issues"
},
"homepage": "https://sms.ir/",
"devDependencies": {
"@types/node": "^22.19.1",
"@vitest/ui": "^4.0.15",
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.0",
"vitest": "^4.0.15"
},
"files": [
"lib/",
"README.md",
"LICENSE"
]
}