-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "@vechain/connex-framework",
"version": "2.1.0",
"description": "A library implements VeChain Connex interface",
"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",
"Framework",
"VeChain",
"Wallet"
],
"author": "qianbin",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/vechain/connex/issues"
},
"homepage": "https://github.com/vechain/connex/tree/master/packages/framework#readme",
"dependencies": {
"@vechain/connex-types": "^2.1.0",
"bignumber.js": "^7.2.1",
"thor-devkit": "^2.0.5",
"validator-ts": "^0.9.1"
},
"sideEffects": false
}