-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "@herajs/wallet",
"version": "2.1.1",
"description": "SDK for making Aergo wallet applications",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "yarn run lint && yarn run build:types && yarn run build:js",
"release": "bash release.sh",
"lint": "eslint --fix src/**/*.ts test/**/*.ts",
"test:ts": "run(){ nyc mocha -r babel-register-ts ${1-'test/*.ts'}; }; run",
"test": "yarn run lint & yarn run type-check && yarn run test:ts"
},
"main": "dist/herajs-wallet.cjs.js",
"module": "dist/herajs-wallet.esm.js",
"browser": "dist/herajs-wallet.iife.js",
"types": "dist/types/index.d.ts",
"author": {
"name": "AERGO and contributors",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@elderapo/typed-event-emitter": "^1.4.1",
"@herajs/client": "^2.1.1",
"@herajs/common": "^2.1.1",
"@herajs/crypto": "^2.1.1",
"@herajs/ledger-hw-app-aergo": "^2.1.1",
"@types/google-protobuf": "^3.2.7",
"@types/hashmap": "^2.0.29",
"@types/leveldown": "^4.0.0",
"@types/levelup": "^3.1.0",
"hashmap": "^2.3.0",
"idb": "^7.0.0",
"level": "^6.0.0"
},
"gitHead": "97d1b15d147bb1bbff6d70dbe4bb06a60a881bc1",
"devDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.24.1"
}
}