This repository was archived by the owner on Feb 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "coolsms-node-sdk",
"version": "2.1.0",
"description": "CoolSMS SDK for Node.js(Server Side Only)",
"repository": {
"type": "git",
"url": "git+https://github.com/coolsms/coolsms-nodejs.git"
},
"keywords": [
"coolsms",
"sms",
"lms",
"mms",
"kakao alimtalk",
"sdk",
"korean sms"
],
"author": {
"name": "Nurigo Team",
"email": "contact@nurigo.net"
},
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/module.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/coolsms/coolsms-nodejs/issues"
},
"homepage": "https://coolsms.co.kr",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && parcel build src/index.ts",
"watch": "parcel watch"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"date-fns": "^2.28.0",
"image-to-base64": "^2.2.0",
"nanoid": "^3.3.1"
},
"devDependencies": {
"@parcel/packager-ts": "2.3.2",
"@parcel/transformer-typescript-tsc": "^2.3.2",
"@parcel/transformer-typescript-types": "2.3.2",
"@types/crypto-js": "^4.1.0",
"@types/image-to-base64": "^2.1.0",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-plugin-tsdoc": "^0.2.14",
"parcel": "^2.3.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"url": "^0.11.0"
},
"files": [
"/dist"
]
}