-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
70 lines (70 loc) · 1.69 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
70
{
"name": "solapi",
"version": "5.3.1",
"description": "SOLAPI SDK for Node.js(Server Side Only)",
"repository": {
"type": "git",
"url": "git+https://github.com/solapi/solapi-nodejs.git"
},
"keywords": [
"solapi",
"sms",
"lms",
"mms",
"kakao alimtalk",
"sdk",
"korean sms"
],
"author": {
"name": "Nurigo Team",
"email": "[email protected]"
},
"source": "src/solapi.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/solapi/solapi-nodejs/issues"
},
"homepage": "https://solapi.github.io/solapi-nodejs",
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && parcel build --no-source-maps",
"watch": "parcel watch",
"docs": "typedoc --entryPointStrategy expand ./src"
},
"engines": {
"node": ">=14",
"parcel": "2.x"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.3",
"image-to-base64": "^2.2.0",
"nanoid": "^3.3.4",
"qs": "^6.11.0"
},
"devDependencies": {
"@parcel/packager-ts": "2.8.1",
"@parcel/transformer-typescript-types": "2.8.1",
"@types/crypto-js": "^4.1.1",
"@types/image-to-base64": "^2.1.0",
"@types/node": "^18.11.13",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"parcel": "^2.8.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typedoc": "^0.23.22",
"typescript": "^4.9.4"
},
"files": [
"/dist"
],
"packageManager": "[email protected]"
}