-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "wax-bot-lib",
"version": "2.9.0",
"description": "wax library for bots",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write",
"build": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kokomoAAA/wax-bot-lib.git"
},
"keywords": [],
"author": "richarddawgin",
"license": "MIT",
"bugs": {
"url": "https://github.com/kokomoAAA/wax-bot-lib/issues"
},
"homepage": "https://github.com/kokomoAAA/wax-bot-lib#readme",
"devDependencies": {
"@types/node": "^18.7.13",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.3",
"prettier-eslint-cli": "^6.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/eslint": "^8.4.6",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"eosjs": "^22.1.0",
"eosjs-ecc": "^4.0.7",
"node-fetch": "2.6"
}
}