forked from coaidev/chatnio-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "chatnio-node",
"version": "1.1.9-0",
"description": "A forked Javascript/Typescript library for the Chat Nio API on Node.",
"main": "dist/index.js",
"scripts": {
"build": "tsc && copy src\\index.d.ts dist",
"release": "tsc && copy src\\index.d.ts dist && npm publish"
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/peachest/chatnio-api-node"
},
"keywords": [
"chatnio",
"api",
"node"
],
"author": "peachest <[email protected]>",
"license": "MIT",
"bugs": {
"type": "git",
"url": "https://github.com/peachest/chatnio-api-node/issues"
},
"homepage": "https://github.com/peachest/chatnio-api-node#readme",
"files": [
"dist"
],
"dependencies": {
"axios": "^1.6.7",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"typescript": "^5.3.3"
}
}