-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.71 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
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
104
{
"name": "@radixdlt/radix-dapp-toolkit",
"description": "Radix dApp Toolkit repository",
"version": "0.0.0",
"homepage": "https://developers.radixdlt.com",
"keywords": [
"radix",
"dapp",
"toolkit",
"dlt",
"web3",
"dApp",
"crypto",
"DeFi"
],
"authors": [
"Alex Stelea <alex.stelea@rdx.works>",
"Dawid Sowa <dawid.sowa@rdx.works>"
],
"engines": {
"node": ">=16.0.0"
},
"bugs": "https://github.com/radixdlt/radix-dapp-toolkit/issues",
"main": "dist/radix-dapp-toolkit.mjs",
"license": "Apache-2.0",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/radix-dapp-toolkit.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/radix-dapp-toolkit.js"
}
}
},
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite serve examples",
"build": "tsc && vite build",
"prepare": "npx husky install",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@radixdlt/babylon-gateway-api-sdk": "1.0.0-rc.3.1.2",
"@radixdlt/connect-button": "0.14.0-alpha.2",
"@radixdlt/wallet-sdk": "0.10.1-alpha.1",
"immer": "^10.0.2",
"lodash.isequal": "^4.5.0",
"neverthrow": "^6.0.0",
"rxjs": "^7.8.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/public-sans": "^4.5.12",
"@hirez_io/observer-spy": "^2.2.0",
"@mui/icons-material": "^5.11.16",
"@mui/joy": "^5.0.0-alpha.76",
"@mui/material": "^5.12.1",
"@radixdlt/radix-engine-toolkit": "0.4.0",
"@radixdlt/rola": "^0.3.1-rcnet-v3.1.1",
"@types/elliptic": "^6.4.14",
"@types/jest": "^29.4.0",
"@types/lodash.isequal": "^4.5.6",
"@types/react-dom": "^18.0.11",
"@types/redux-logger": "^3.0.9",
"babel-preset-vite": "^1.1.0",
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jest-mock-extended": "^3.0.4",
"lit": "^2.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"react-syntax-highlighter": "^15.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/radixdlt/radix-dapp-toolkit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}