forked from vechain/connex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "@vechain/connex-driver",
"version": "2.0.12",
"description": "Connex framework driver implementation",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"esm"
],
"scripts": {
"build": "rm -rf dist/ esm/ && ../../node_modules/.bin/tsc -d -p . && ../../node_modules/.bin/tsc --module esnext --outDir 'esm' -p .",
"lint": "../../node_modules/.bin/tslint -p .",
"prepack": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vechain/connex.git"
},
"keywords": [
"Connex",
"Driver",
"VeChain"
],
"author": "qianbin",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/vechain/connex/issues"
},
"homepage": "https://github.com/vechain/connex/tree/marster/packages/driver/#readme",
"devDependencies": {
"@types/lru-cache": "^5.1.0",
"@types/ws": "^6.0.1",
"@vechain/connex-framework": "^2.0.12"
},
"dependencies": {
"@vechain/connex-types": "^2.0.12",
"axios": "^0.21.1",
"bignumber.js": "^7.2.1",
"isomorphic-ws": "^4.0.1",
"lru-cache": "^5.1.1",
"thor-devkit": "^2.0.5",
"ws": "^7.1.0"
},
"sideEffects": false
}