-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1003 Bytes
/
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
{
"name": "highrise.sdk.dev",
"version": "2.4.0",
"description": "A JavaScript library for writing and running Highrise bots.",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"src",
"typings"
],
"scripts": {
"start": "node ./src/index.js",
"build": "npm run build:sdk",
"build:sdk": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "https://github.com/sphinixFTW/highrise.sdk.dev"
},
"bugs": "https://github.com/sphinixFTW/highrise.sdk.dev/issues",
"homepage": "https://sphinixFTW.github.io/highrise.sdk.dev",
"keywords": [
"highrise",
"highrise-js-sdk",
"highrise-sdk",
"highrise.sdk.dev",
"highrise.js",
"highrisejs",
"bot",
"chatbot",
"sdk"
],
"author": "iHsein",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"colors": "^1.4.0",
"events": "^3.3.0",
"ws": "^8.14.2"
}
}