-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.48 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.48 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@witnet/sdk",
"version": "3.2.5",
"description": "Typescript library and CLI tooling for Web3 buidlers willing to interact with the Witnet blockchain.",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-sdk"
},
"author": "Witnet Foundation",
"license": "MIT",
"private": false,
"type": "module",
"keywords": [
"witnet",
"web3",
"wallet",
"sdk",
"oracle",
"don",
"crypto",
"blockchain"
],
"bin": {
"watcher": "src/bin/bots/watcher.cjs",
"witsdk": "src/bin/index.js",
"witnet-sdk": "src/bin/index.js"
},
"files": [
"dist",
"scripts/",
"src/bin",
"witnet/assets",
".env_witnet"
],
"exports": {
".": {
"types": "./dist/src/*.d.ts",
"require": "./dist/src/index.js",
"default": "./dist/src/index.js"
},
"./assets": {
"types": "./dist/witnet/assets/*.d.cts",
"require": "./witnet/assets/index.cjs",
"default": "./witnet/assets/index.cjs"
},
"./utils": {
"types": "./dist/src/lib/*.d.ts",
"require": "./dist/src/lib/utils.js",
"default": "./dist/src/lib/utils.js"
}
},
"types": "./dist",
"scripts": {
"build": "pbjs --target json witnet/witnet.proto -o witnet/witnet.proto.json && npm run clean && tsc -p tsconfig.json",
"clean": "node ./scripts/clean.cjs dist",
"fmt": "npx biome check --unsafe",
"fmt!": "npx biome check --write --unsafe",
"postinstall": "node scripts/postinstall.cjs",
"prepare": "pnpm run build",
"watcher": "node ./src/bin/bots/watcher.cjs",
"witsdk": "cross-env-shell WITNET_SDK_RADON_ASSETS_PATH='../../../witnet/assets' node ./src/bin/index.js"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"axios": "^1.13.2",
"bech32": "~2.0.0",
"bip32": "^5.0.0",
"cbor": "^10.0.11",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"graphql-query-compress": "1.2.4",
"inquirer": "^12.11.1",
"json-bigint": "^1.0.0",
"keccak256": "^1.0.6",
"lodash.merge": "^4.6.2",
"long": "^5.3.2",
"moment": "^2.30.1",
"node-cron": "^4.2.1",
"promise-poller": "^1.9.1",
"protobufjs": "^7.5.4",
"qrcode-terminal": "^0.12.0",
"secp256k1": "^5.0.1",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/cbor": "^5.0.1",
"@types/json-bigint": "^1.0.4",
"@types/node": "^24.10.9",
"@types/promise-poller": "^1.7.4",
"cross-env": "10.0.0",
"protobufjs-cli": "^1.2.0",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"keccak",
"protobufjs",
"secp256k1"
]
}
}