-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.73 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
71
72
73
74
75
76
77
78
79
80
{
"name": "switch-bots",
"version": "1.0.2",
"description": "Switch API TypeScript SDK for building bots and applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint 'switch/**/*.ts'",
"format": "prettier --write 'switch/**/*.ts'",
"docs": "typedoc --out docs switch/",
"example": "ts-node example/index.ts"
},
"keywords": [
"switch",
"switch-api",
"switch-sdk",
"switch-bot",
"switch-bots",
"bot",
"bot-api",
"bot-framework",
"chat",
"chat-api",
"messaging",
"community",
"social",
"realtime",
"websocket",
"api-client",
"api-wrapper",
"sdk",
"typescript-sdk",
"gaming",
"game-bot",
"moderation",
"stickers"
],
"author": "Devesh Pal",
"license": "MIT",
"dependencies": {
"ws": "^8.13.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ws": "^8.5.5",
"@types/uuid": "^9.0.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.1",
"prettier": "^3.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"typedoc": "^0.25.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/New-dev0/switch-bots.git"
},
"bugs": {
"url": "https://github.com/New-dev0/switch-bots/issues"
},
"homepage": "https://github.com/New-dev0/switch-bots#readme",
"publishConfig": {
"access": "public"
}
}