-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@atlantis-l/radix-tool",
"version": "0.8.9",
"description": "A tool to interact with the radix network",
"main": "dist/radix-tool.umd.cjs",
"types": "dist/index.d.ts",
"module": "dist/radix-tool.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "prettier . --write && vite build && tsc",
"format": "prettier . --write"
},
"engines": {
"node": ">=20.8.0"
},
"keywords": [
"radix",
"dlt",
"crypto",
"scrypto",
"toolkit"
],
"author": "atlantis-l",
"repository": {
"type": "git",
"url": "git+https://github.com/atlantis-l/Radix-Tool.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.4",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@radixdlt/babylon-gateway-api-sdk": "^1.2.0",
"@radixdlt/radix-engine-toolkit": "^1.0.3",
"@scure/base": "^1.1.5",
"buffer": "^6.0.3"
}
}