-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
52
53
54
55
56
57
{
"name": "emblem-vault-sdk",
"version": "2.3.6",
"description": "Emblem Vault Software Development Kit",
"main": "dist/index.js",
"scripts": {
"bump:major": "node ./script/bump.js major",
"bump:minor": "node ./script/bump.js minor",
"bump:patch": "node ./script/bump.js patch",
"test": "npm run build && jest",
"test:node": "JEST_ENV=node jest",
"test:browser": "JEST_ENV=browser jest",
"test:all": "npm run test:node && npm run test:browser",
"build": "tsc",
"postbuild": "node ./script/version.js && mv dist/index.d.ts types/index.d.ts && mv dist/types.d.ts types/types.d.ts && mv dist/utils.d.ts types/utils.d.ts && mv dist/derive.d.ts types/derive.d.ts",
"bundle": "npm run build && browserify dist/index.js -o dist/bundle.js && cp dist/bundle.js docs/bundle.js",
"watch": "onchange 'src/*.ts' -- npm run bundle"
},
"types": "types/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.11",
"browserify": "^17.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^9.0.2",
"puppeteer": "^21.6.1",
"ts-jest": "^29.1.1",
"tsify": "^5.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
"@ethersproject/bignumber": "^5.7.0",
"@toruslabs/fetch-node-details": "^8.0.0",
"@toruslabs/torus.js": "^6.2.0",
"bchaddrjs": "^0.5.2",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"bitcore-mnemonic": "^10.0.23",
"crypto-js": "^4.2.0",
"ethereumjs-util": "^7.1.5",
"install": "^0.13.0",
"npm": "^10.4.0",
"sats-connect": "^1.4.1",
"tiny-secp256k1": "^2.2.3",
"uninstall": "^0.0.0",
"web3": "^4.4.0"
},
"engines": {
"node": ">=20.5.1"
}
}