-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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": "@dfinity/ckbtc",
"version": "3.1.6",
"description": "A library for interfacing with ckBTC.",
"license": "Apache-2.0",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"rmdir": "node ../../scripts/rmdir.mjs",
"ts-declaration": "tsc --emitDeclarationOnly --outDir dist/types",
"build": "npm run rmdir && mkdir -p dist && cp -R candid dist && node esbuild.mjs && npm run ts-declaration",
"prepack": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfinity/ic-js.git",
"directory": "packages/ckbtc"
},
"bugs": {
"url": "https://github.com/dfinity/ic-js"
},
"keywords": [
"internet computer",
"internet-computer",
"ic",
"dfinity",
"ckbtc",
"bitcoin",
"minter",
"token"
],
"homepage": "https://github.com/dfinity/ic-js#readme",
"peerDependencies": {
"@dfinity/agent": "^2.0.0",
"@dfinity/candid": "^2.0.0",
"@dfinity/principal": "^2.0.0",
"@dfinity/utils": "^2.9.0"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
"base58-js": "^1.0.5",
"bech32": "^2.0.0"
}
}