-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "witnet-toolkit",
"version": "2.0.10",
"description": "Basic typescript library for building Witnet Radon artifacts. This packag also bundles the `w3gw` and `witnet-toolkit` command-line tools.",
"author": "Witnet Foundation",
"license": "MIT",
"private": false,
"type": "commonjs",
"bin": {
"witnet-toolkit": "src/bin/toolkit.js"
},
"files": [
"assets/witnet.proto",
"dist",
"src/utils.js"
],
"exports": {
".": "./dist/lib/radon/index.js",
"./radon": {
"require": "./dist/lib/radon/index.js",
"types": "./dist/lib/radon/*.d.ts"
},
"./utils": "./src/utils.js"
},
"types": "./dist/lib/radon",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "pnpm run build",
"test": "node ./src/bin/toolkit.js update"
},
"dependencies": {
"axios": "^1.6.7",
"cbor": "^9.0.1",
"graphql-query-compress": "^1.2.4",
"web3-jsonrpc-gateway": "^1.9.3",
"witnet-radon-js": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.11.13",
"typescript": "latest"
}
}