-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
70 lines (70 loc) · 1.86 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": "node-kakao",
"version": "4.5.0",
"description": "Loco protocol compatible library",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist_esm",
"readme.md",
"LICENSE"
],
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register ./tests/*.test.ts",
"locotest": "node -r ts-node/register loco-test.ts",
"build": "npm run build:node",
"build:node": "./node_modules/.bin/tsc --outDir dist --declarationDir dist --declaration true",
"docs": "./node_modules/.bin/typedoc src",
"fix": "./node_modules/.bin/eslint --fix ./src/**/*",
"prepublishOnly": "npm run fix && npm run test && npm run build"
},
"keywords": [
"node-kakao",
"chat-protocol",
"chat-client",
"loco-protocol"
],
"author": {
"name": "storycraft",
"email": "storycraft@pancake.sh",
"url": "https://pancake.sh"
},
"license": "MIT",
"devDependencies": {
"@types/bson": "^4.0.4",
"@types/chai": "^4.2.21",
"@types/lossless-json": "^1.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.3",
"@types/node-forge": "^0.10.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"chai": "^4.2.0",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.0.0",
"mocha": "^9.1.3",
"ts-node": "^10.1.0",
"typedoc": "^0.22.3",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/storycraft/node-kakao.git"
},
"dependencies": {
"axios": "^0.24.0",
"bson": "^4.4.1",
"eventemitter3": "^4.0.7",
"form-data": "^4.0.0",
"hash-wasm": "^4.8.0",
"lossless-json": "^1.0.3",
"node-forge": "^0.10.0",
"promise-socket": "^7.0.0"
}
}