forked from hivenapp/hiven.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "hiven",
"version": "2.0.6",
"description": "Hiven.js - TS/JS bot library for Hiven",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"push": "rm -rf dist; yarn build; cp -R package.json README.md LICENSE dist; (cd dist && yarn publish); rm -rf dist/package.json dist/README.md dist/LICENSE",
"lnk": "rm -rf dist; yarn build; cp -R package.json README.md LICENSE dist; (cd dist && yarn link)"
},
"keywords": [],
"author": "Dustin Rouillard <code@dustin.sh> (https://dustin.sh)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hivenapp/hiven.js.git"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^14.0.24",
"@types/node-fetch": "^2.5.7",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5"
},
"dependencies": {
"axios": "^0.19.0",
"events": "^3.2.0",
"node-fetch": "^2.6.0",
"ws": "^7.2.0"
}
}