-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.4 KB
/
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
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
{
"name": "sms-ir-api",
"version": "1.2.1",
"description": "SMS.IR API client for JS/TS/ESM/Node.js",
"author": {
"name": "Shahab Movahhedi",
"email": "dev@shmovahhedi.com",
"url": "https://shmovahhedi.com/"
},
"homepage": "https://github.com/movahhedi/sms-ir-node",
"repository": {
"type": "git",
"url": "https://github.com/movahhedi/sms-ir-node.git",
"directory": "/"
},
"bugs": "https://github.com/movahhedi/sms-ir-node",
"license": "MIT",
"keywords": [
"sms-ir-api",
"smsir",
"smsir-js",
"sms-typescript",
"sms-ir",
"sms.ir",
"sms",
"messaging",
"api"
],
"type": "module",
"source": "./src/smsir.ts",
"main": "./dist/smsir.cjs",
"module": "./dist/smsir.mjs",
"types": "./dist/smsir.d.ts",
"typings": "./dist/smsir.d.ts",
"umd:main": "./dist/smsir.umd.js",
"unpkg": "./dist/smsir.umd.js",
"exports": {
".": {
"require": "./dist/smsir.cjs",
"default": "./dist/smsir.modern.js"
},
"./ts": "./src/smsir.ts",
"./package.json": "./package.json"
},
"files": [
"src",
"dist"
],
"cspell": {
"version": "0.2",
"language": "en",
"words": [
"smsir",
"likeToLike",
"microbundle"
],
"ignorePaths": [
"README.fa.md"
]
},
"scripts": {
"build": "microbundle build --raw true --generateType -f modern,esm,cjs,umd",
"dev": "microbundle watch -f modern,esm,cjs,umd"
},
"devDependencies": {
"microbundle": "^0.15.1",
"typescript": "^5.3.3"
}
}