-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@bywise/provider",
"version": "1.1.1",
"description": "Web3 provider of Bywise",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/dev.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest --watch --verbose false --config jestconfig.json",
"pub": "tsc && npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/DevelBlockchain/bywise-provider.git"
},
"keywords": [
"web3",
"provider",
"web3-provider",
"bywise",
"blockchain"
],
"author": "Devel Blockchain <contact@develblockchain.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevelBlockchain/bywise-provider/issues"
},
"homepage": "https://github.com/DevelBlockchain/bywise-provider#readme",
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@bywise/web3": "^1.0.3",
"base-64": "^1.0.0"
}
}